c中的调用约定

发布于 2024-08-18 01:14:04 字数 28 浏览 7 评论 0 原文

有人请告诉我 如何更改c中的默认调用约定?

some one please tell me
how to change the default calling convention in c?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水染的天色ゝ 2024-08-25 01:14:04

调用约定不是由语言指定的。它们是编译器的扩展。

也就是说,通常您会执行以下操作:

void __fastcall my_func(void);

但这完全取决于您的编译器和平台。

Calling conventions are not specified by the language. They are extensions to your compiler.

That said, commonly you do something like:

void __fastcall my_func(void);

But this is completely dependent on your compiler and platform.

屌丝范 2024-08-25 01:14:04

这很大程度上取决于您的编译器、工具链和平台。您需要更具体地了解您的环境以及您希望更改的环境。

This largely depends on your compiler, toolchain, and platform. You will need to be more specific on what your environment is, and what you wish to change to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文