【1】C++预定义的宏,使用Unicode字符编码
#ifndef EXPORTDLL_EXPORTS
#define EXPORTDLL_API extern "C" _declspec(dllimport)
#else
#define EXPORTDLL_API extern "C" _declspec(dllexport)
#endif//!EXPORTDLL_EXPORTS
【2】C++的调用约定
有_stdcall与_cdecl两种,在C#调用时,需要指定使用对应的调用约定。
【3】C++导出代码
/************************************************************************/
/* 1. 调用约定 */
/************************************************************************/
//1.1 标准调用约定
EXPORTDLL_API void _stdcall CallingCvt_Stdcall()
{
wprintf(L"CallingCvt_Stdcall\n");
}
//1.2 C调用约定
EXPORTDLL_API void _cdecl CallingCvt_Cdecl()
{
wprintf(L"CallingCvt_Cdecl\n");
}
【4】C#导入
需要指定对应的调用约定,如CallingConvention.StdCall
/************************************************************************/
/* 1. 调用约定 */
/************************************************************************/
//1.1 标准调用约定
[DllImport("ExportDll.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Unicode)]
public static extern void CallingCvt_Stdcall();
//1.2 C调用约定
[DllImport("ExportDll.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Unicode)]
public static extern void CallingCvt_Cdecl();
测试:
//1.1 标准调用约定
CExportDll.CallingCvt_Stdcall();
//1.2 C调用约定
CExportDll.CallingCvt_Cdecl();