仅基于 .h 文件执行 PInvoke
如果我只有 .header 接口文件并公开了方法,是否可以进行 P/I?
Is it possible to do P/I if I only have the .header interface file with methods exposed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您指的是代码并编译您的 PInvoke 调用,是的,您可以仅使用标头来完成。
当然,如果你想运行它,你还需要 DLL。
If you mean code and compile your PInvoke call, yes you can do it with the header only.
Of course if you want to run it you'll need the DLL too.