G
George2
Hello everyone,
If I change the entry point to main in linker --> advanced (default is
empty). Then there will be an error box,
can not find MSVCR80D.dll. What is wrong with my code? (if I change
the entry point of application from main to empty, there is no such
error)
I am using Visual Studio 2005 console application project.
thanks in advance,
George
If I change the entry point to main in linker --> advanced (default is
empty). Then there will be an error box,
can not find MSVCR80D.dll. What is wrong with my code? (if I change
the entry point of application from main to empty, there is no such
error)
Code:
static int i = 100;
int main(int argc, char** argv)
{
int j;
return 0;
}
I am using Visual Studio 2005 console application project.
thanks in advance,
George