comparison Gui/error.h @ 1693:d237c5d4b216

GUI version n-1
author arpi
date Sat, 25 Aug 2001 21:04:29 +0000
parents
children 016f6d583733
comparison
equal deleted inserted replaced
1692:6c98e425c091 1693:d237c5d4b216
1
2 #ifndef _MPLAYER_ERROR_HANDLER
3 #define _MPLAYER_ERROR_HANDLER
4
5 #define True 1
6 #define False 0
7
8 // 0 - standard message
9 // 1 - detto
10 // 2 - events
11 // 3 - skin reader messages
12 // 4 - bitmap reader messages
13 // 5 - signal handling messages
14 // 6 - gtk messages
15
16 typedef void (*errorTHandler)( int critical,const char * format, ... );
17
18 extern errorTHandler message;
19 extern errorTHandler dbprintf;
20
21 #endif