enventor/src/include/common.h

40 lines
932 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;
2014-08-02 00:41:24 -07:00
typedef struct redoundo_s redoundo_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"
#include "tools.h"
#include "base_gui.h"
#include "search.h"
2014-05-31 23:35:54 -07:00
#include "goto.h"
#include "newfile.h"
#include "auto_comp.h"
#include "setting.h"
#include "redoundo.h"
#include "template.h"
#include "live_edit.h"
2013-07-20 01:51:56 -07:00
#endif