I have a old DLL (Borland Builder 2006 C++) which I want to use in .Net C# Visual Studio 2010. When I try to import the functions in VS always I get a StackOverflowException from Visual Studio. I've already read a lot stuff and the import seems to be easy. But I fail and don't see my error.
In the Borland DLL the Functions are exported as:
__declspec(dllexport) void TestFunc1()orextern "C" __declspec(dllexport) void __stdcall TestFunc2()
The decorated names are (*.DEF file created with impdef and proved with dependency walker):
@TestFunc1$qqsvTestFunc2
In Visual Studio I import in this way:
[DllImport("MyDllName.dll", EntryPoint = "@TestFunc1$qqsv", CallingConvention = System.Runtime.InteropServices.CallingConvention.StdCall, CharSet = CharSet.Auto, SetLastError = true)]
public static extern void TestFunc1();
[DllImport("MyDllName.dll",CallingConvention = System.Runtime.InteropServices.CallingConvention.StdCall, CharSet = CharSet.Auto, SetLastError = true)]
public static extern void TestFunc2();
In booth cases a get a StackOverflowException from Visual studio, when I call:
MyImport_Unmanaged.TestFunc1()orMyImport_Unmanaged.TestFunc2()
What is wrong ? Can anybody help me ?
Interesting when I import a old dll created with Visual Studio C++ the decorated name of the function is: _TestFunc1@0. The name is quite different to the Borland names but is works.
SetLastErroris for Win32 API functions. Remove that.CharSetis pointless because there are no strings in the parameters. Remove that too. Decoration varies between compilers. Don't be surprised when they differ.TestFunc1is not declared asstdcall. You should export it as such. It's probably the Borlandregistercalling convention. Don't see whyTestFunc2fails. – David Heffernan Jan 23 '12 at 9:28SetLastError=true? – abatishchev Jan 23 '12 at 9:30