enventor/src/include/common.h

31 lines
723 B
C
Raw Normal View History

2013-07-20 01:51:56 -07:00
#ifndef __COMMON_H__
#define __COMMON_H__
typedef struct viewer_s view_data;
typedef struct statusbar_s stats_data;
typedef struct editor_s edit_data;
typedef struct syntax_color_s color_data;
typedef struct parser_s parser_data;
typedef struct attr_value_s attr_value;
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"
2013-07-20 12:52:20 -07:00
#include "dummy_obj.h"
#include "ctxpopup.h"
#include "indent.h"
#include "edj_mgr.h"
2013-09-11 08:57:08 -07:00
#include "globals.h"
#include "build.h"
2014-01-29 05:28:02 -08:00
#include "hotkeys.h"
#include "base_gui.h"
2013-07-20 01:51:56 -07:00
#endif