Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've imported my C++ DLL functions into C# by following some online examples. The functions have to be declared as part of a C# class. But if I want to use these functions in other C# classes how can I share the declarations?

The best solution would be to import the C++ DLL functions into a general class and use this throughout my application.

Thanks in advance.

Edit: I tried the suggestion below but now I'm getting the error "ImportSomeStuff is inaccessible due to its protection level" where I try to use the struct. Everything seems to be public, so what else can I try?

class ImportSomeStuff
{
    [StructLayout(LayoutKind.Sequential)]
    public struct MyStruct
    {
        public uint nData;
    }

    public delegate void MyCallback(ref MyStruct myStruct);

    [DllImport("My.dll", CallingConvention = CallingConvention.Cdecl)]
    [return: MarshalAs(UnmanagedType.I1)]
    public static extern bool AddCallback(MyCallback callback);

    [DllImport("My.dll", CallingConvention = CallingConvention.Cdecl)]
    [return: MarshalAs(UnmanagedType.I1)]
    public static extern bool RemoveCallback(MyCallback callback);
}

(different file)

class DoSomeStuff
{
    public List<ImportSomeStuff.MyStruct> listStuff = new List<ImportSomeStuff.MyStruct>();
}
share|improve this question

2 Answers

up vote 2 down vote accepted
public static class Native
{
    [DllImport("nativelib.dll")]
    public static extern int SomeFunction();
}

And then you could call this function from everywhere:

Native.SomeFunction();
share|improve this answer
Thanks. My functions also use a struct that I've declared in C#, but I'm now getting the error "[class] is inaccessible due to its protection level" where I use it. Any suggestions? – parsley72 Dec 12 '10 at 10:18
@parsley then make the structs public – CodesInChaos Dec 12 '10 at 10:25
They are - see code example above. – parsley72 Dec 12 '10 at 10:33
@parsley72, so reference your structs like this: ImportSomeStuff.MyStruct instead of MyStruct only. It is a nested type. – Darin Dimitrov Dec 12 '10 at 10:34
Where? I already do in the example code. – parsley72 Dec 12 '10 at 10:36
show 3 more comments

They are static functions, so if you make them public you should be able to access them with ClassName.FunctionName(). At last that's how you do it with C functions.

But typically I don't make my native interop stuff public. I keep it internal in my interop assembly and write a public wrapper on top of it which fits C# style better.

share|improve this answer
Agreed. I want to do that when I have more time but this is just trying to get it to work! – parsley72 Dec 12 '10 at 10:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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