R
Ryan
I'm writing a wrapper class in Managed C++ for some libraries that I need
to use in C#. The problem I'm having is that some of the functions that
are being wrapped take void*. Further, some take function pointers for
function definitions that use void* as a parameter. I don't know how to
deal with this...I'd like to be able to cast to an object or something
along those lines, but that doesn't seem possible.
How would one go about doing this?
Thanks.
to use in C#. The problem I'm having is that some of the functions that
are being wrapped take void*. Further, some take function pointers for
function definitions that use void* as a parameter. I don't know how to
deal with this...I'd like to be able to cast to an object or something
along those lines, but that doesn't seem possible.
How would one go about doing this?
Thanks.