1 #ifndef INCLUDE_OSD_GFX_H
2 #define INCLUDE_OSD_GFX_H
3 
4 #include "cleantyp.h"
5 #include "pce.h"
6 #include "sys_dep.h"
7 #include <allegro.h>
8 
9 extern BITMAP* OSD_MESSAGE_SPR;
10 
11 extern int blit_x,blit_y;
12 // where must we blit the screen buffer on screen
13 
14 extern int screen_blit_x, screen_blit_y;
15 // where on the screen we must blit XBuf
16 
17 extern BITMAP *EAGLE_buf;
18 // the buffer where we will put eagleized video
19 
20 
21 #endif
22