1 /*
2  * File:         scriptbox.h
3  *
4  * Description:  header for scriptbox.c
5  *
6  *
7  * This source code is part of kludge3d, and is released under the
8  * GNU General Public License.
9  *
10  *
11  */
12 
13 
14 #ifndef SCRIPTBOX_H
15 #define SCRIPTBOX_H
16 
17 #include <gtk/gtk.h>
18 
19 GtkWidget * create_scriptbox( void ) ;
20 void scriptbox_add_func( char *funcname, char *helpstring, char *arglist );
21 
22 #endif
23