| GlobalAllocFlags Enumeration | 
[Missing <summary> documentation for "T:Altaxo.UnmanagedApi.Kernel32.GlobalAllocFlags"]
 AltaxoDom (in AltaxoDom.dll) Version: 4.8.3261.0 (4.8.3261.0)
 Syntax
Syntax[FlagsAttribute]
public enum GlobalAllocFlags
 Members
Members| Member name | Value | Description | 
|---|
| GMEM_FIXED | 0 | Allocates fixed memory. The return value is a pointer. | 
| GMEM_MOVEABLE | 2 | Allocates 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_ZEROINIT | 64 | Initializes memory contents to zero. | 
| GPTR | 64 | Combines GMEM_FIXED and GMEM_ZEROINIT. | 
| GHND | 66 | Combines GMEM_MOVEABLE and GMEM_ZEROINIT. | 
 See Also
See Also