当我导出函数供其他语言使用时,是否需要使用_stdcall?
为了让我的函数被其他语言使用,我是否必须使用 _stdcall 在 C++ 中声明我的函数?
In order for my function be used by other language, do I have to use _stdcall to declare my functions in C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能不是绝对必要的,但它通常是阻力最小的路径。举例来说,如果另一种语言恰好是 C,您可能可以使用
_cdecl
或_fastcall
。不过,如果您想支持任意语言,_stdcall
是显而易见的选择。It may not be strictly necessary, but it's generally the path of least resistance. Just for example, if the other language happened to be C, you could probably use
_cdecl
or_fastcall
. If you want to support arbitrary languages, though,_stdcall
is the obvious choice.