mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
21 lines
751 B
C
21 lines
751 B
C
#ifndef __CLUTTER_SETTINGS_PRIVATE_H__
|
|
#define __CLUTTER_SETTINGS_PRIVATE_H__
|
|
|
|
#include <clutter/clutter-backend-private.h>
|
|
#include <clutter/clutter-settings.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void _clutter_settings_set_backend (ClutterSettings *settings,
|
|
ClutterBackend *backend);
|
|
void _clutter_settings_read_from_key_file (ClutterSettings *settings,
|
|
GKeyFile *key_file);
|
|
|
|
void clutter_settings_set_property_internal (ClutterSettings *settings,
|
|
const char *property,
|
|
GValue *value);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_SETTINGS_PRIVATE_H__ */
|