@ 在汇编中起什么作用?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它是符号名称的一部分。符号名称与函数名称不同,因为函数名称不是唯一的。请参阅名称修改。
It's part of the symbol name. The symbol name differs from the function name since function names aren't unique. See Name mangling.
这意味着对 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.
是的,它只是这里函数名称的一部分。
Yeah, it's just part of the function name here.