aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ecore/src/lib/ecore_config/ecore_config_ipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/ecore/src/lib/ecore_config/ecore_config_ipc.h')
-rw-r--r--libraries/ecore/src/lib/ecore_config/ecore_config_ipc.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/libraries/ecore/src/lib/ecore_config/ecore_config_ipc.h b/libraries/ecore/src/lib/ecore_config/ecore_config_ipc.h
deleted file mode 100644
index 7b3dea1..0000000
--- a/libraries/ecore/src/lib/ecore_config/ecore_config_ipc.h
+++ /dev/null
@@ -1,50 +0,0 @@
1#include <Ecore_Ipc.h>
2#include "Ecore_Config.h"
3
4typedef enum
5{
6 IPC_NONE,
7 IPC_PROP_LIST,
8 IPC_PROP_DESC,
9 IPC_PROP_GET,
10 IPC_PROP_SET, /* end of the codes shared by evidence and econf */
11
12 IPC_GLOBAL_PROP_LIST,
13
14 IPC_BUNDLE_LIST,
15 IPC_BUNDLE_NEW,
16 IPC_BUNDLE_LABEL_GET,
17 IPC_BUNDLE_LABEL_SET,
18 IPC_BUNDLE_LABEL_FIND,
19
20 IPC_LAST
21} Ecore_Config_Ipc_Call;
22
23Ecore_Config_Server *_ecore_config_ipc_init(const char *pipe_name);
24int _ecore_config_ipc_exit(void);
25
26Ecore_Config_Server *_ecore_config_server_convert(void *srv);
27
28char *_ecore_config_ipc_prop_list(Ecore_Config_Server * srv,
29 const long serial);
30char *_ecore_config_ipc_prop_desc(Ecore_Config_Server * srv,
31 const long serial,
32 const char *key);
33char *_ecore_config_ipc_prop_get(Ecore_Config_Server * srv,
34 const long serial,
35 const char *key);
36int _ecore_config_ipc_prop_set(Ecore_Config_Server * srv,
37 const long serial,
38 const char *key,
39 const char *val);
40
41char *_ecore_config_ipc_bundle_list(Ecore_Config_Server * srv);
42int _ecore_config_ipc_bundle_new(Ecore_Config_Server * srv,
43 const char *);
44char *_ecore_config_ipc_bundle_label_get(Ecore_Config_Server *
45 srv, const long);
46int _ecore_config_ipc_bundle_label_set(Ecore_Config_Server *
47 srv, const long,
48 const char *);
49long _ecore_config_ipc_bundle_label_find(Ecore_Config_Server *
50 srv, const char *);