Hi,
I've the next problem. I need to use a function from one old library in a member function of a administrate class. When I try to use
#include "myFunctions.h"
I recive a lot of errors as
'IServiceProvider': ambiguous symbol.
I'm lost. Can Anybody help me?
Thanks.
Hi,
I have the next function in an old dll.
myType function(unsigned long *var1, unsigned long var2, wchar_t *var3);
I want to export this function to C#, and I try the next
[DllImport("myLib.dll", EntryPoint="function")]
public static extern myType myNewFunction(ref uint...
I am trying to reuse in C# one function written in Visual C++ 6.0 that is in a DLL. Function has the following head:
type_enum name_function(
unsigned long *var1,
unsigned long var2,
wchar_t *var3);
I am trying to use the following thing, but it does not work...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.