1 
2 /*
3  *  Ump - Unnamed Math Program
4  *  Copyright (c) 2004-2005 by Mattias Hultgren <mattias_hultgren@tele2.se>
5  *
6  *  See main.cpp
7  */
8 
9 #ifndef UMP_ABOUTWINDOW_H_
10 #define UMP_ABOUTWINDOW_H_
11 
12 
13 // this will create and present the aboutwin (it is a modal window)
14 void aboutwin_show(GtkWindow *parent);
15 
16 // this closes the aboutwin (if the aboutwin isn't open nothing happens)
17 void aboutwin_close(void);
18 
19 
20 
21 #endif
22