Mercurial > mplayer.hg
annotate Gui/error.h @ 4326:870cec859f92
upgraded to newest vidix interface. in eq: return if g200 moved to the beginning of seteq
author | alex |
---|---|
date | Wed, 23 Jan 2002 19:34:33 +0000 |
parents | 016f6d583733 |
children |
rev | line source |
---|---|
1693 | 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 | |
2082 | 21 #endif |
22 |