Hi!
I compile this simple "Hello world" Win32 program:
#include<windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Hello World!", "Note", MB_OK);
return 0;
}
When the program runs I get weird fonts. See attachement.
Kindly advise.
Thanks