home *** CD-ROM | disk | FTP | other *** search
- /*************************************
- * *
- * Editor v1.0 *
- * by Torsten Jürgeleit in 07/91 *
- * *
- * Imports *
- * *
- *************************************/
-
- /* Import from main.c */
-
- IMPORT struct GfxBase *GfxBase;
- IMPORT struct IntuitionBase *IntuitionBase;
- IMPORT struct ArpBase *ArpBase;
- IMPORT struct Library *IntuiSupBase;
-
- IMPORT struct Screen wb_screen;
- IMPORT struct Window *ewin, *pwin;
- IMPORT struct TextAttr topaz60_attr, topaz80_attr;
- IMPORT struct NewWindow project_new_window;
-
- IMPORT struct TemplateList template_list;
- IMPORT struct Template *selected_template,
- *info_template;
- IMPORT struct Box current_box;
-
- IMPORT struct GadgetData *use_gd;
- IMPORT struct Dimension min_dimension[];
- IMPORT struct FileRequester *project_file_requester,
- *csource_file_requester;
-
- IMPORT struct GadgetData text_gadget_data[], normal_gadget_data[];
-
- IMPORT struct GadgetData list_gadget_data[];
-
- IMPORT APTR eri, pri, egl, eml, use_gl;
-
- IMPORT BYTE *template_type_text_array[];
- IMPORT BYTE *default_mx_text_array[], *default_cycle_text_array[],
- *default_listview_text_array[];
-
- IMPORT BYTE project_window_title[];
-
- IMPORT USHORT snap_offset_table[];
-
- IMPORT USHORT editor_mode, snap_offset, template_type;
-
- IMPORT USHORT modify_mode, mouse_button;
- IMPORT SHORT last_snap_x, last_snap_y;
-
- IMPORT BOOL info_displayed;
-