2020-10-03 02:28:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2020 Red Hat, Inc
|
2011-04-14 02:47:18 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2020-10-03 02:28:17 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2011-04-14 02:47:18 +00:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2020-10-03 02:28:17 +00:00
|
|
|
*
|
|
|
|
* Authors: Matthias Clasen <mclasen@redhat.com>
|
2011-04-14 02:47:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2020-10-03 02:28:17 +00:00
|
|
|
#ifndef __GTK_CSS_SERIALIZER_H__
|
|
|
|
#define __GTK_CSS_SERIALIZER_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2020-10-03 02:31:29 +00:00
|
|
|
void gtk_css_print_string (GString *str,
|
|
|
|
const char *string,
|
|
|
|
gboolean multiline);
|
2011-04-14 02:47:18 +00:00
|
|
|
|
2020-10-03 02:28:17 +00:00
|
|
|
G_END_DECLS
|
2019-03-22 03:20:17 +00:00
|
|
|
|
2020-10-03 02:28:17 +00:00
|
|
|
#endif /* __GTK_CSS_SERIALIZER_H__ */
|