|
|
@@ -1,3 +1,5 @@ |
|
|
|
#ifdef WIN64 |
|
|
|
|
|
|
|
#include <windows.h> |
|
|
|
|
|
|
|
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); |
|
|
@@ -48,3 +50,9 @@ LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, |
|
|
|
|
|
|
|
return DefWindowProcW(hwnd, msg, wParam, lParam); |
|
|
|
} |
|
|
|
|
|
|
|
#elif defined MACOS |
|
|
|
|
|
|
|
// https://stackoverflow.com/questions/30269329/creating-window-application-in-pure-c-on-mac-osx |
|
|
|
|
|
|
|
#endif |