HandmadeHero/project/handmade_win32.cpp

14 lines
233 B
C++
Raw Normal View History

2023-09-08 14:50:22 -07:00
#include "win32.h"
2023-09-08 14:50:22 -07:00
int CALLBACK WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nShowCmd
)
{
2023-09-08 15:54:16 -07:00
MessageBox( 0, L"First message!", L"Handmade Hero", MB_OK | MB_ICONINFORMATION );
return 0;
}