Working win32 API implementation with mouse

(no keyboard yet)
This commit is contained in:
Thomas Bernard
2018-06-20 16:34:53 +02:00
parent aa73e76e67
commit 9ac4267468
8 changed files with 304 additions and 3 deletions

View File

@@ -32,6 +32,12 @@
#include "struct.h"
#include "global.h"
#if defined(WIN32) && !defined(USE_SDL) && !defined(USE_SDL2)
int Init_Win32(HINSTANCE hInstance, HINSTANCE hPrevInstance);
#endif
void GFX2_Set_mode(int *width, int *height, int fullscreen);
byte Get_Screen_pixel(int x, int y);
void Set_Screen_pixel(int x, int y, byte value);