mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
GDI paint test
This commit is contained in:
parent
bc8f9f7f3f
commit
6df175bd31
@ -521,6 +521,12 @@ LRESULT CALLBACK WndProcGDI(HWND hwnd, UINT message,
|
||||
|
||||
switch (message)
|
||||
{
|
||||
case WM_PAINT:
|
||||
PAINTSTRUCT ps;
|
||||
HDC hdc = BeginPaint(hwnd, &ps);
|
||||
TextOut(hdc, 0, 0, "Hello, Windows!", 15);
|
||||
EndPaint(hwnd, &ps);
|
||||
break;
|
||||
case WM_DROPFILES:
|
||||
case WM_SYSCOMMAND:
|
||||
case WM_CHAR:
|
||||
|
Loading…
x
Reference in New Issue
Block a user