17 lines
491 B
C++
17 lines
491 B
C++
#include <windows.h>
|
|
|
|
int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
|
LPSTR lpCmdLine, int nCmdShow) {
|
|
WNDCLASS WindowClass = {0};
|
|
WindowClass.style = ;
|
|
WindowClass.lpfnWndProc = ;
|
|
// WindowClass.cbClsExtra = ;
|
|
// WindowClass.cbWndExtra = ;
|
|
WindowClass.hInstance = hInstance;
|
|
// WindowClass.hIcon = ;
|
|
// WindowClass.hCursor = ;
|
|
// WindowClass.lpszMenuName = ;
|
|
WindowClass.lpszClassName = "HandmadeHeroWindowClass";
|
|
return (0);
|
|
}
|