P
Patrick Theobald
hi all!!
I'm trying to invoke a function that is located in a C-coded Win32-dll.
I copied the dll into the \windows\ directory of the mobile device.
The declaration is quite simple and looks like this:
[DllImportAttribute("foodll.dll",EntryPoint="foo")]
internal static extern int foo(int h);
When I try to invoke the function
int ret = foo(1);
I get an MissingMethod exception.
I already checked the function names by using dumpbin.exe. They seem to be
ok.
What can do? Any cool tips?
Thank in advance,
Patrick Theobald
I'm trying to invoke a function that is located in a C-coded Win32-dll.
I copied the dll into the \windows\ directory of the mobile device.
The declaration is quite simple and looks like this:
[DllImportAttribute("foodll.dll",EntryPoint="foo")]
internal static extern int foo(int h);
When I try to invoke the function
int ret = foo(1);
I get an MissingMethod exception.
I already checked the function names by using dumpbin.exe. They seem to be
ok.
What can do? Any cool tips?
Thank in advance,
Patrick Theobald