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