1 /*
2  * File:         frame.h
3  *
4  * Description:  header for frame.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 
15 #ifndef FRAME_H
16 #define FRAME_H
17 
18 #include <gtk/gtk.h>
19 
20 GtkWidget * create_frames( void );
21 
22 
23 #endif
24 
25