372b39fd63
On top of the existing "Settings" group in the settings.ini file we should have two more groups: Environment - contains all the configuration possible through environment variables Debug - contains all the possible debug variables
17 lines
541 B
C
17 lines
541 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);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_SETTINGS_PRIVATE_H__ */
|