_get_heap_handle
傳回 C 執行階段系統使用堆積的控制代碼。
重要
這個應用程式開發介面無法在 Windows 執行階段執行的應用程式,除了在偵錯組建。如需詳細資訊,請參閱 /ZW 不支援 CRT 函式。
intptr_t _get_heap_handle( void );
傳回值
將控制代碼傳回至 C 執行階段系統使用的 Win32 堆積。
備註
如果您想要呼叫 HeapSetInformation ,請使用這個函式並啟用 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;
}