我在对 C++ dll 进行 P/Invoke 调用时遇到了一些困难。我收到“无法找到入口点”错误。
在 C++ 中,我像这样公开函数......
#ifdef __cplusplus
extern "C" {
#endif
__declspec(dllexport)
long
WINAPI
MgScSCardUIDlgSelectCardW(__inout LPOPENCARDNAMEW_EX pOcne);
#ifdef __cplusplus
}
#endif
C#中的dllimport语句如下:
[DllImport("mgsc.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.Cdecl)]
public static extern Int32 MgScSCardUIDlgSelectCardW([MarshalAs(UnmanagedType.Struct)] [In, Out] ModWinsCard.OPENCARDNAME_EX ocnwex);
我已经尝试过没有调用约定、标准和 winapi 调用约定。与所有相同的结果。我用 DependencyWalker 查看了公开的函数,发现它公开为“_MgScSCardUIDlgSelectCardW@4”。我知道装饰是正常的(但是应该声明'extern“C”'应该处理那个??),但从未见过任何示例代码,其中 dllimport 的函数看起来是这样的,所以看起来不像我应该这样称呼它。
我在这里看到了推荐 .def 文件的答案,但我宁愿不必处理这个问题,因为当我只需要完成这项工作时,这只是我要学习和搞砸的另一件事。