http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmex/html/vcco
nconvertingmanagedextensionsforcprojectsfrompureintermediatelanguagetomixedmode.
asp
static int minitialize() {
int retval = 0;
try
{
__crt_dll_initialize();
}
catch(System::Exception* e)
{
Console::WriteLine(e);
retval = 1;
}
return retval;
}
static int mterminate() {
int retval = 0;
try
{
__crt_dll_terminate();
}
catch(System::Exception* e)
{
Console::WriteLine(e);
retval = 1;
}
return retval;
}
> Project settings are "Mixed Mode" with /noentry
> linking with: mscoree.lib
[quoted text clipped - 48 lines]
> > Thanks,
> > Steve
GVG7 - 30 Jun 2005 10:33 GMT
Hi Steve,
How do we turn off managed class in MSVS 2003 .Net . I have the sam
problem of stack overflow error.
Regards,
Georgie