作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 Delphi 中调用 RtlQueryProcessHeapInformation。
RtlQueryProcessHeapInformation 是从 ntdll.dll 导出的函数。
我没有这个函数的原型(prototype)。我收到“未声明的标识符”错误。
asm
...
xchg ebx, eax
pop ebp
call RtlQueryProcessHeapInformation
dec ebp
...
end;
最佳答案
一些网络搜索导致 this page或 this one这表明该函数如下所示:
NTSTATUS NTAPI RtlQueryProcessHeapInformation(
IN OUT PRTL_DEBUG_INFORMATION Buffer
);
NTSTATUS
来自您的
previous question .至于
NTAPI
,即
__stdcall
.这意味着 Delphi 中的函数声明是:
function RtlQueryProcessHeapInformation(
Buffer: PRTL_DEBUG_INFORMATION
): NTSTATUS; stdcall; external 'ntdll.dll';
PRTL_DEBUG_INFORMATION
的声明我相信你可以自己翻译。您仍然需要对参数的含义进行逆向工程,因为这是一个实现私有(private)的、未记录的函数。
external
隐式导入它我在您的两个问题中都显示了代码。这是更简单的方法。 LoadLibrary
和 GetProcAddress
显式导入它。这是比较费力的方法。 关于delphi - 我需要调用 RtlQueryProcessHeapInformation 的原型(prototype),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10153434/
我需要在 Delphi 中调用 RtlQueryProcessHeapInformation。 RtlQueryProcessHeapInformation 是从 ntdll.dll 导出的函数。 我
我是一名优秀的程序员,十分优秀!