HandmadeHero/project/platform/win32.h

13 lines
225 B
C
Raw Normal View History

2023-09-08 14:50:22 -07:00
/*
Alternative header for windows.h
*/
#include "windows/windows_base.h"
2023-09-08 15:54:16 -07:00
#include "windows/window.h"
2023-09-08 14:50:22 -07:00
2023-09-08 15:54:16 -07:00
#ifdef UNICODE
constexpr auto MessageBox = MessageBoxW;
#else
constexpr auto MessageBox = MessageBoxA;
#endif // !UNICODE