1.[E_BORDER] Change code to hide the client window in _e_border_cb_window_hide().
[platform/core/uifw/e17.git] / src / bin / e_config_data.c
1 #include "e.h"
2
3 EAPI E_Config_DD *
4 e_config_descriptor_new(const char *name, int size)
5 {
6    Eet_Data_Descriptor_Class eddc;
7
8    if (!eet_eina_stream_data_descriptor_class_set(&eddc, sizeof (eddc), name, size))
9      return NULL;
10
11    /* FIXME: We can directly map string inside an Eet_File and reuse it.
12       But this need a break in all user of config every where in E.
13    */
14
15    return (E_Config_DD *) eet_data_descriptor_stream_new(&eddc);
16 }