#include <windows.h>Add this file manualy through New Item from the popup menu - right click on the Source folder in Solution View.
int APIENTRY wWinMain(HINSTANCE, HINSTANCE, LPWSTR, int)
{
return 0;
}
If you will change the project settings - in C/C++ section, Code Generation->Runtime Libraries set to Multi-Threaded, the executable in the release configuration will be about 50K and will depend on NTDLL.DLL and KERNEL32.DLL. That means it will run on any Windows computer.
No comments:
Post a Comment