static lib run as native code?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bill

    static lib run as native code?

    If I statically link a library (unmanaged c++) in managed c++, does it run
    under native code like calling a DLL?


  • Jochen Kalmbach

    #2
    Re: static lib run as native code?

    Hi Bill,
    [color=blue]
    > If I statically link a library (unmanaged c++) in managed c++, does it
    > run under native code like calling a DLL?[/color]

    Yes. Every time you call a funtion from the unmanged LIB, a transition to
    the unmanaged world will take place... and vice-versa.

    --
    Greetings
    Jochen

    My blog about Win32 and .NET

    Comment

    Working...