HandmadeHero/project/platform/win32.h
2023-09-08 18:54:16 -04:00

13 lines
225 B
C++

/*
Alternative header for windows.h
*/
#include "windows/windows_base.h"
#include "windows/window.h"
#ifdef UNICODE
constexpr auto MessageBox = MessageBoxW;
#else
constexpr auto MessageBox = MessageBoxA;
#endif // !UNICODE