Calling Unmanaged Code

  • Thread starter Thread starter Roth Fouty
  • Start date Start date
R

Roth Fouty

We have a ton of code already written in C++ and the code
is compiled into dynamically linked dll's. What is the
easiest way to call this code, or is it even possible to
call the code. We do export serveral classes from those
dll's right now. Any direction on this would be
appreciated.

Thanks
 
We have a ton of code already written in C++ and the code
is compiled into dynamically linked dll's. What is the
easiest way to call this code, or is it even possible to
call the code. We do export serveral classes from those
dll's right now. Any direction on this would be
appreciated.

Thanks

Look up "interop services" in the help system, or look up "DLLImport."
 
Back
Top