1 /*
2  * File:         tex_man.h
3  *
4  * Description:  header for tex_man.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 #ifndef TEXMAN_H
14 #define TEXMAN_H
15 
16 #include <gtk/gtk.h>
17 
18 
19 GtkWidget * create_tex_manager( void );
20 gboolean texman_rebuild_list( void );
21 
22 #endif
23