http://www.winprog.org/tutorial
PDF dökümanından örnek bir kod (hello world'ün tersi iyiymiş
Kod: Tümünü seç
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK);
return 0;
}


