OceanDesigner
Programmer
I have written a program in Visual C++ v5.0 as a Win32 Application. The program compiles but it will not link. The error is:
error LNK2001: unresolved external symbol _WinMain@16
which suggests that I may not have the correct preprocessor definitions or I am missing an include file. The simplest form of the code that gives me the error looks like this:
#include <stdio.h>
int main()
{
printf("Linked"
;
return 0;
} // END MAIN FUNCTION
I appreciate any help you can give me.
Jeff
error LNK2001: unresolved external symbol _WinMain@16
which suggests that I may not have the correct preprocessor definitions or I am missing an include file. The simplest form of the code that gives me the error looks like this:
#include <stdio.h>
int main()
{
printf("Linked"
return 0;
} // END MAIN FUNCTION
I appreciate any help you can give me.
Jeff