WIn32 DLL Wrapper
I have a managed class library developed in C#.
Now i need to create a win 32 dll wrapper around it.
So in my Win 32 DLL i need to import that class library and call the starting point functions from it.
I am new on this. I was able to create functions and use it in test code.
int _stdcall sum(int x , int y)
{
return x + y;
}
char* _stdcall to_upper(char *lowerstring)
{
_strupr(lowerstring);
return lowerstring;
}
But i need to call external dll (C# class library) and call functions from the functions created here in Win32 DLL.
Help would really be appreciated.
Related Article: C# DLL in C++, help please
is a C++ discussion thread by lavenzo that has 9 replies, was last updated 1 year ago and has been tagged with the keywords: c++, dll, write.
chintan_1671
Light Poster
39 posts since Jun 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
I have a managed class library developed in C#.
Now i need to create a win 32 dll wrapper around it.
So in my Win 32 DLL i need to import that class library and call the starting point functions from it.
I am new on this. I was able to create functions and use it in test code.
int _stdcall sum(int x , int y)
{
return x + y;
}
char* _stdcall to_upper(char *lowerstring)
{
_strupr(lowerstring);
return lowerstring;
}
But i need to call external dll (C# class library) and call functions from the functions created here in Win32 DLL.
Help would really be appreciated.
I think i got the answer:
http://support.microsoft.com/kb/828736
Thanks
chintan_1671
Light Poster
39 posts since Jun 2010
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
Question Self-Answered as of 2 Years Ago