Mercurial > sdl-ios-xcode
comparison src/video/wincommon/SDL_lowvideo.h @ 1465:8dfa9a6d69a5
Updated WinCE support by Dmitry (with some tweaks)
Converted the disk audio driver to SDL_RWops for portability
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 04 Mar 2006 08:24:35 +0000 |
parents | bb6839704ed6 |
children | 4aac8563c296 |
comparison
equal
deleted
inserted
replaced
1464:af30090c0330 | 1465:8dfa9a6d69a5 |
---|---|
24 #ifndef _SDL_lowvideo_h | 24 #ifndef _SDL_lowvideo_h |
25 #define _SDL_lowvideo_h | 25 #define _SDL_lowvideo_h |
26 | 26 |
27 #define WIN32_LEAN_AND_MEAN | 27 #define WIN32_LEAN_AND_MEAN |
28 #include <windows.h> | 28 #include <windows.h> |
29 | |
30 #ifndef SetClassLongPtr | |
31 #define SetClassLongPtr SetClassLong | |
32 #endif | |
33 #ifndef GetWindowLongPtr | |
34 #define GetWindowLongPtr GetWindowLong | |
35 #endif | |
36 #ifndef SetWindowLongPtr | |
37 #define SetWindowLongPtr SetWindowLong | |
38 #endif | |
29 | 39 |
30 #include "../SDL_sysvideo.h" | 40 #include "../SDL_sysvideo.h" |
31 | 41 |
32 /* Hidden "this" pointer for the video functions */ | 42 /* Hidden "this" pointer for the video functions */ |
33 #define _THIS SDL_VideoDevice *this | 43 #define _THIS SDL_VideoDevice *this |