Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error while importing fortran DLL in C#.NET

Status
Not open for further replies.

gnupur

Programmer
May 25, 2014
1
US
thread214-1572697

Hello Developers!!

I have to import a fortran dll in C#.net I use the following code, but receive an error- "Unable to find an entry point named '0x0000100F' in DLL <DLL_Name>"

Code Snippet: (C#.net)
namespace Application
{
public class FortranDllWrap
{
[DllImport(@"C:\Users\XYZ\Documents\Visual Studio 2008\Projects\TestConsoleApplication\TestConsoleApplication\Debug\TestDLL.dll", CallingConvention = CallingConvention.Cdecl, EntryPoint = "0x0000100F")]
public static extern void mainsubroutine();
}

private void btnSubmit_Click(object sender, EventArgs e)
{
FortranDllWrap.mainsubroutine();
}
}

I found the EntryPoint of this DLL using the tool- "Dependency Walker"
I want to attach a screenshot of this tool but I think there is no way I can attach a copy.
Any information would be greatly appreciated. I really don't understand where am I going wrong. Please Help!

Looking forward for your response. Thanks in advance!
 
Calling convention for Fortran is stdcall: not cdecl.

Do you need to specify the entrypoint?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top