S
sovarschizsuzsa
Hy!
I have written a MC++ wrapper DLL file for use in a C# project. This
wrapper DLL is built on a C DLL.
I have the following functions in the C DLL:
int First(char* a1, char* a2, void* *a3, bool a4);
void Second(void* lic);
I've converted this in MC++ dll in the following way:
int First(System::String* a1, System::String* a2, System::Object* a3,
bool a4);
void Second(System::Object* a);
Or do I need to use System::Void instead of System::Object?
And how can I make the conversion from System::Object* (or
System::Void) to void**?
Can anyone help me?
Thanks a lot!
I have written a MC++ wrapper DLL file for use in a C# project. This
wrapper DLL is built on a C DLL.
I have the following functions in the C DLL:
int First(char* a1, char* a2, void* *a3, bool a4);
void Second(void* lic);
I've converted this in MC++ dll in the following way:
int First(System::String* a1, System::String* a2, System::Object* a3,
bool a4);
void Second(System::Object* a);
Or do I need to use System::Void instead of System::Object?
And how can I make the conversion from System::Object* (or
System::Void) to void**?
Can anyone help me?
Thanks a lot!