vote up 1 vote down star

I am currently developing an application for Windows CE on the TI OMAP processor, which is an ARM processor. I am trying to simply call a function in a C++ DLL file from C# and I always get a value of 0 back, no matter which data type I use. Is this most likely some kind of calling convention mismatch? I am compiling the DLL and the main EXE from the same Visual Studio solution.

C# Code Snippet:

public partial class Form1 : Form
{
    private void button1_Click(object sender, EventArgs e)
    {
        byte test = LibWrap.test_return();
        MessageBox.Show(test.ToString());
    }
}

public class LibWrap
{
    [DllImport("Test_CE.dll")]
    public static extern byte test_return();
}

C++ DLL Code Snippet:

extern "C" __declspec (dllexport) unsigned char test_return() {
    return 95;
}
flag

Just tested on Windows Mobile 2005 R2 Emulator and works perfectly. – Mehrdad Afshari Jul 2 at 22:52

2 Answers

vote up 1 vote down check

It worked when I changed:

extern "C" __declspec (dllexport) unsigned char test_return() {
    return 95;
}

to

extern "C" __declspec (dllexport) unsigned char __cdecl test_return() {
    return 95;
}

In the DLL code. Why it doesn't assume this when compiled for WinCE is beyond me.

link|flag
Ben: Probably that's a project settings issue. The default VS2008 Windows Mobile project settings worked fine for me. – Mehrdad Afshari Jul 2 at 23:10
vote up 0 vote down

Try exporting test_return() as follows:

unsigned char __declspec(dllexport) WINAPI test_return() {
   return 95;
}
link|flag
1  
Somewhere WINAPI is being defined as __stdcall where it should have been __cdecl – Ben Jul 2 at 23:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.