|
Here if ur code likes look like this try to look inthere if there's a problem :
#include <windows.h>
#include <tchar.h>
int WINAPI _tWinMain(HINSTANCE instance, HINSTANCE prevInstance, LPTSTR cmdLine, int cmdShow)
{
::MessageBox(NULL,
_T("This is a text executable that links against a later version of the runtimes."),
_T("Test EXE"),
MB_OK);
return 0;
}
|