Fix for the problem that SDL applications exited
[AROS-Contrib.git] / Games / lbreakout2 / client / editor.h
blobb2c4283f044862fd776bc6aff7c4ccb5dfd301a6
1 /***************************************************************************
2 editor.h - description
3 -------------------
4 begin : Fri Oct 12 2001
5 copyright : (C) 2001 by Michael Speck
6 email : kulkanie@gmx.net
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
19 ====================================================================
20 Create/delete editor resources
21 ====================================================================
23 void editor_create();
24 void editor_delete();
26 ====================================================================
27 Initiate and clear stuff for each editor call.
28 file_name is the name of the edited file in home directory.
29 ====================================================================
31 int editor_init( char *file_name );
32 void editor_clear();
34 ====================================================================
35 Run the editor
36 ====================================================================
38 void editor_run();