allow this to be used form c++!

SVN revision: 9893
This commit is contained in:
Carsten Haitzler 2004-04-25 04:28:52 +00:00
parent 36862709f6
commit f09616a23c
1 changed files with 39 additions and 33 deletions

View File

@ -114,6 +114,10 @@ typedef struct Ecore_Config_Server {
Ecore_Config_Bundle *bundles; /* data anchor */
struct Ecore_Config_Server *next; } Ecore_Config_Server;
# ifdef __cplusplus
extern "C" {
# endif
/* global ptrs to save passing them through the API */
extern Ecore_Config_Server *__ecore_config_server_global;
extern Ecore_Config_Server *__ecore_config_server_local;
@ -190,9 +194,11 @@ int ecore_config_save_file(char *file);
# define ECORE_CONFIG_ERR_FAIL (-1)
# define ECORE_CONFIG_ERR_SUCC (0)
#endif
/* convenience mathods in convenience.c */
int ecore_config_evas_font_path_apply(Evas *evas);
void ecore_config_prop_list_describe(void);
# ifdef __cplusplus
}
# endif
#endif