调用格式如下:
[DllImport("ex.dll", EntryPoint = "method")]
public static extern void method(int a);
其中ex.dll为C++DLL名,method为函数名, 这里的int a为C++中方法的参数转换。
例:C++DLL名:Interface.dll,函数为voidCopMemFree(void *vp);
调用格式为:
[DllImport("Interface.dll", EntryPoint = "CopMemFree")]
public static extern void CopMemFree(IntPtr vp);
其实C#调用C++dll主要就是C++与C#的参数转换比较困难。
望楼主采纳。
///
/// 获取照片
///
///
///
[DllImport("termb.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Auto
, EntryPoint = "GetPhoto", SetLastError = false)]
public static extern int GetPhoto(string path);
忘记了…