menu, config - hide internal structure type since they are private.

affected by these patchs

4fcf8eaef7
9af9369c79
This commit is contained in:
ChunEon Park 2014-01-30 12:28:07 +09:00
parent 9651c0dddd
commit efab2b76a1
3 changed files with 4 additions and 2 deletions

View File

@ -30,6 +30,8 @@ struct config_s
Eina_Bool hotkeys : 1;
};
typedef struct config_s config_data;
static config_data *g_cd = NULL;
static void

View File

@ -29,6 +29,8 @@ struct menu_s
edit_data *ed;
};
typedef struct menu_s menu_data;
static menu_data *g_md = NULL;
static void warning_no_btn_cb(void *data, Evas_Object *obj EINA_UNUSED,

View File

@ -1,13 +1,11 @@
#ifndef __COMMON_H__
#define __COMMON_H__
typedef struct menu_s menu_data;
typedef struct viewer_s view_data;
typedef struct app_s app_data;
typedef struct statusbar_s stats_data;
typedef struct editor_s edit_data;
typedef struct syntax_color_s color_data;
typedef struct config_s config_data;
typedef struct parser_s parser_data;
typedef struct attr_value_s attr_value;
typedef struct dummy_obj_s dummy_obj;