Archived

This forum has been archived. Please start a new discussion on GitHub.

(KERNEL32.DLL): 0xE06D7363

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?

Comments

  • matthew
    matthew NL, Canada
    utopiazh wrote:
    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?

    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
  • done
    Thanks a lot!