Enum GlobalMemorySettings
Namespace: Dapplo.Windows.Kernel32.Enums
Assembly: Dapplo.Windows.Kernel32.dll
Syntax
public enum GlobalMemorySettings : uint
Fields
| Name | Description |
|---|---|
| Fixed | Allocates fixed memory. The return value is a pointer. |
| Movable | 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 Fixed. |
| ZeroInit | Initializes memory contents to zero. |