(KERNEL32.DLL): 0xE06D7363

in Help Center
I'm using VC6.0 using MFC, windows Server 2003 ,ice 2.1.0
While Compiling...
I received :
warning C4541: 'dynamic_cast' used on polymorphic type 'class IceDelegate::Ice::Object' with /GR-; unpredictable behavior may result
While Debuging, i received the following info :
First-chance exception in Manager.exe (MSVCRTD.DLL): 0xC0000005: Access Violation.
First-chance exception in Manager.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception.
The same sources in a win32 console program can be compiled and run correctly without any warnings !
What's the problem?
While Compiling...
I received :
warning C4541: 'dynamic_cast' used on polymorphic type 'class IceDelegate::Ice::Object' with /GR-; unpredictable behavior may result
While Debuging, i received the following info :
First-chance exception in Manager.exe (MSVCRTD.DLL): 0xC0000005: Access Violation.
First-chance exception in Manager.exe (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception.
The same sources in a win32 console program can be compiled and run correctly without any warnings !
What's the problem?
0
Comments
You are using the wrong compilation flags. You need to turn on RTTI, exception handling, etc. See the Ice demos to find out what compilation flags you need to enable.
Regards, Matthew
Thanks a lot!