1 2 3
|
pbutton = CreateWindow("Button", "Play", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 350, 500, 100, 25, hwnd, NULL, hInstance, 0);
ebutton = CreateWindow("Button", "Quit", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 500, 500, 100, 25, hwnd, NULL, hInstance, 0);
mbutton = CreateWindow("Button", "Multiplayer", WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON, 200, 500, 100, 25, hwnd, NULL, hInstance, 0);
| |