|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
GetProcessHeap
The GetProcessHeap function obtains a handle to the heap of the calling process. This handle can then be used in calls to the HeapAlloc, HeapReAlloc, HeapFree, and HeapSize functions.
HANDLE GetProcessHeap(VOID)
Parameters
This function has no parameters.
Return Values
If the function succeeds, the return value is a handle to the calling process's heap. If the function fails, the return value is NULL.
Remarks
GetProcessHeap allows Win32-based applications to allocate memory from the process heap without having to first create a heap with the HeapCreate function, as shown in this example:
HeapAlloc(GetProcessHeap(), 0, dwBytes);
Note that the handle obtained by calling the function should not be used in calls to the HeapDestroy function. Note, also, that the HEAP_NO_SERIALIZE flag should not be specified when using the HeapAlloc, HeapFree, HeapReAlloc, and HeapSize functions to access the process heap. The system may create additional threads within the application's process, such as a Ctrl+C handler, that simultaneously access the process heap. For more information about HEAP_NO_SERIALIZE, see the HeapCreate function.
See Also
GetProcessHeaps, HeapAlloc, HeapCreate, HeapDestroy, HeapFree, HeapReAlloc, HeapSize
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
GetProcessHeap
Функция GetProcessHeap получает ручку в кучу вызова процесса. Эта ручка может затем использован на вызовах в HeapAlloc, HeapReAlloc, HeapFree, и функции HeapSize.
РУЧКА GetProcessHeap(ПУСТОТА)
Параметры
Эта функция не имеет параметры.
Обратные Величины
Если функция добивается успеха, обратная величина является ручкой в кучу процесса вызова. Если функция терпит неудачу, обратная величина НЕДЕЙСТВИТЕЛЬНА.
Замечания
GetProcessHeap ПОЗВОЛЯЕТ приложения Win32, чтобы распределять память из кучи процесса без необходимости сначала создавать кучу с функцией HeapCreate, как показано в этом примере:
HeapAlloc(GetProcessHeap(), 0, dwBytes);
Отметьте, что ручка полученная вызовом функции не должна использована на вызовах в функцию HeapDestroy. Примечание, также, что флаг HEAP_NO_SERIALIZE не должен определен при использовании HeapAlloc, HeapFree, HeapReAlloc, и функциях HeapSize, чтобы иметь доступ к куче процесса. Система может создать дополнительную резьбу в пределах прикладного процесса, как например, вручитель Ctrl+C, который одновременно имеет доступ к куче процесса. Более подробно о HEAP_NO_SERIALIZE, смотри функцию HeapCreate.
Смотри Также
GetProcessHeaps, HeapAlloc, HeapCreate, HeapDestroy, HeapFree, HeapReAlloc, HeapSize
|
|
|
|
| |