Click or drag to resize

GlobalAllocFlags Enumeration

[Missing <summary> documentation for "T:Altaxo.UnmanagedApi.Kernel32.GlobalAllocFlags"]


Namespace: Altaxo.UnmanagedApi.Kernel32
Assembly: AltaxoDom (in AltaxoDom.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
[FlagsAttribute]
public enum GlobalAllocFlags
Members
Member nameValueDescription
GMEM_FIXED0Allocates fixed memory. The return value is a pointer.
GMEM_MOVEABLE2Allocates movable memory. Memory blocks are never moved in physical memory, but they can be moved within the default heap. The return value is a handle to the memory object. To translate the handle into a pointer, use the GlobalLock function. This value cannot be combined with GMEM_FIXED.
GMEM_ZEROINIT64Initializes memory contents to zero.
GPTR64Combines GMEM_FIXED and GMEM_ZEROINIT.
GHND66Combines GMEM_MOVEABLE and GMEM_ZEROINIT.
See Also