Click to See Complete Forum and Search --> : Wrapping a unmanaged C++ class


simon29
November 27th, 2002, 11:39 AM
Hi!

I have a structure defined in my old unmanaged class, which is a output parameter of one of my methods. I want to create a managed C++ class which "wrappes" my old one.... the question is:

Which Marshall Type Conversion must I use in order to pass the information of this structure to my managed class and viceversa?

CODE
----------------------------------------------------------------------------------

void Extract( Feature* *MyFeature);

----------------------------------------------------------------------------------

Feature is the structure which is really the output of my method...

Thanks in advance!!!