声明为导出函数

extern "C" __declspec(dllexport) int myfun(int nType,char *strPath)
{
OutputDebugStringA("dll export load success");
return 0;
}

你可能感兴趣的:(声明为导出函数)