Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5131 clevermous 1
#ifndef _SDL_menuetvideo_h
2
#define _SDL_menuetvideo_h
3
 
4
#include "SDL_mouse.h"
5
#include "SDL_sysvideo.h"
6
 
7
#define _THIS	SDL_VideoDevice *this
8
 
9
struct SDL_PrivateVideoData {
10
 unsigned char * __video_buffer;
11
 char 	       * __title;
12
 int		 win_size_x,win_size_y;
13
 int		 vx_ofs,vy_ofs;
14
 unsigned char** __lines;
15
};
16
 
17
void MenuetOS_InitOSKeymap(_THIS);
18
void MenuetOS_PumpEvents(_THIS);
19
 
20
#endif