enventor/src/include/common.h

32 lines
798 B
C
Raw Normal View History

2013-07-20 01:51:56 -07:00
#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;
2013-07-20 01:51:56 -07:00
typedef struct parser_s parser_data;
typedef struct attr_value_s attr_value;
2013-07-20 12:52:20 -07:00
typedef struct dummy_obj_s dummy_obj;
typedef struct syntax_helper_s syntax_helper;
typedef struct indent_s indent_data;
2013-07-20 01:51:56 -07:00
#include "edc_editor.h"
#include "menu.h"
#include "edj_viewer.h"
#include "statusbar.h"
#include "syntax_helper.h"
#include "syntax_color.h"
#include "config_data.h"
#include "edc_parser.h"
#include "panes.h"
2013-07-20 12:52:20 -07:00
#include "dummy_obj.h"
#include "ctxpopup.h"
#include "indent.h"
2013-09-11 08:57:08 -07:00
#include "globals.h"
2013-07-20 01:51:56 -07:00
#endif