@ 在汇编中起什么作用?

发布于 2024-11-03 03:11:37 字数 116 浏览 0 评论 0原文

call dword ptr __imp__VirtualProtect@16

@到底在做什么?它只是函数名称的一部分还是?我在多个地方看到过这个,想知道它代表什么?

call dword ptr __imp__VirtualProtect@16

What exactly is the @ doing? Is it just part of the name of the function or? I've seen this in multiple locations and am wondering what it stands for?

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

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

发布评论

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

评论(3

嗼ふ静 2024-11-10 03:11:37

它是符号名称的一部分。符号名称与函数名称不同,因为函数名称不是唯一的。请参阅名称修改

It's part of the symbol name. The symbol name differs from the function name since function names aren't unique. See Name mangling.

撩心不撩汉 2024-11-10 03:11:37

这意味着对 PROC _imp_VirtualProtect 的调用需要 16 个字节的参数(例如 4 个 DWORD,或 2 个 DWORD 和 4 个 WORD,或...)

@16 在输出目标代码中生成: MASM 当定义了 PROC(CDECL 或 STDCALL)时。链接器看到“损坏的”名称。

It means that a call to PROC _imp_VirtualProtect takes 16 bytes of parameters (like 4 DWORDs, or 2 DWORDs and 4 WORDs, or... )

The @16 is generated in the output object code by MASM when the PROC is defined (CDECL or STDCALL). The linker sees the "mangled" name.

人生戏 2024-11-10 03:11:37

是的,它只是这里函数名称的一部分。

Yeah, it's just part of the function name here.

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