Hi,
I have this code in C++ and it is not compiling in a terminal window on a Fedora Linux machine.
Please help, thanks a lot
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Goodbye, cruel world!", "Note", MB_OK);
return 0;
}