vote up 0 vote down star

Hi chaps(and chappettes)

Have a regular C dll with an exported function

int GetGroovyName(int grooovyId,char * pGroovyName, int bufSize,)

Basically you pass it an ID (int), a char * buffer with memory pre-allocated and the size of the buffer passed in.

pGroovyName gets filled with some text. (i.e. its a lookup basied on the groovyID)

The question is how do I best call that from c# ?

cheers

Buzz

flag

4 Answers

vote up 3 vote down

On the C# side, you would have:

[DllImport("MyLibrary")]
extern static int GetGroovyName(int grooovyId, StringBuilder pGroovyName, int bufSize);

And you call it like:

StringBuilder sb = new StringBuilder (256);
int result = GetGroovyName (id, sb, sb.Capacity); // sb.Capacity == 256
link|flag
+1 - using StringBuilder is better than using char[] like in my example. – Xaero Nov 18 at 0:11
vote up 1 vote down

You may use DLLImport in C#.

Check this http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.dllimportattribute.aspx

Code from MSDN

using System;
using System.Runtime.InteropServices;

class Example
{
    // Use DllImport to import the Win32 MessageBox function.
    [DllImport("user32.dll", CharSet = CharSet.Unicode)]
    public static extern int MessageBox(IntPtr hWnd, String text, String caption, uint type);

    static void Main()
    {
        // Call the MessageBox function using platform invoke.
        MessageBox(new IntPtr(0), "Hello World!", "Hello Dialog", 0);
    }
}
link|flag
-1 The example you posted does not allow the string to be modified by unmanaged code. – Gonzalo Nov 18 at 0:09
vote up 0 vote down

Have a look at this snippet demonstrating (theoretically) how it should look:

using System;
using System.Runtime.InteropServices;
using System.Text; // For StringBuilder

class Example
{
    [DllImport("mylib.dll", CharSet = CharSet.Unicode)]
    public static extern int GetGroovyName(int grooovyId, ref StringBuilder sbGroovyName,  int bufSize,)

    static void Main()
    {
        StringBuilder sbGroovyNm = new StringBuilder(256);
        int nStatus = GetGroovyName(1, ref sbGroovyNm, 256);
        if (nStatus == 0) Console.WriteLine("Got the name for id of 1. {0}", sbGroovyNm.ToString().Trim());
        else Console.WriteLine("Fail!");
    }
}

I set the stringbuilder to be max capacity of 256, you can define something smaller, assuming it returns 0 is success, it prints out the string value for groovy id of 1, otherwise prints fail. Hope this helps. Tom

link|flag
You beat me to it Gonzalo.... :) – tommieb75 Nov 18 at 0:11
Heh. Btw, no need for 'ref' there... – Gonzalo Nov 18 at 0:18
Hi there when i step into the dll from that example the sbGroovyNm is a bad pointer and crashes the app... so the dll doesnt think there has been memory allocated to sbGroovyNm Buzz – Buzz Nov 18 at 0:41
vote up 0 vote down

HURRAY! it WORKED

the key learning other than the cleverness supplied by everyone (and many thanks to everyone for your assistance) was the size of the LONGs in c++ vs the size of the LONGs in c#

hurry and thanks!

Buzz

link|flag

Your Answer

Get an OpenID
or
never shown

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