_get_heap_handle
返回 C 运行时系统所用堆的句柄。
语法
intptr_t _get_heap_handle( void );
返回值
返回 C 运行时系统所用 Win32 堆的句柄。
备注
如果要调用 HeapSetInformation
并在 CRT 堆上启用低碎片堆,请使用此函数。
默认情况下,此函数的全局状态范围限定为应用程序。 若要更改此行为,请参阅 CRT 中的全局状态。
要求
例程 | 必需的标头 |
---|---|
_get_heap_handle |
<malloc.h> |
有关兼容性的详细信息,请参阅 兼容性。
示例
// crt_get_heap_handle.cpp
// compile with: /MT
#include <windows.h>
#include <malloc.h>
#include <stdio.h>
int main(void)
{
intptr_t hCrtHeap = _get_heap_handle();
ULONG ulEnableLFH = 2;
if (HeapSetInformation((PVOID)hCrtHeap,
HeapCompatibilityInformation,
&ulEnableLFH, sizeof(ulEnableLFH)))
puts("Enabling Low Fragmentation Heap succeeded");
else
puts("Enabling Low Fragmentation Heap failed");
return 0;
}