Hi there,

I want to learn how to create win32 api programs.
Does anyone know of any tutorials that i can learn off?

I found a website but it only works with DEV C ++

This is the Code:

Code:
#include <windows.h>

int WinMain(HINSTANCE hInstance, HINSTANCE pInstance,
			LPSTR lpCmdLine, int nShowCmd)
{

	

		MessageBox(NULL, "Hello World", 
		"Title", MB_OK | MB_ICONINFORMATION);
		
		if (MessageBox(NULL, "Do you?", "Do You?",
		MB_YESNO | MB_ICONQUESTION) == IDYES)
		MessageBox(NULL, "Yes", "Yes", MB_OK);




	return 0;
}