GMEM_MOVABLE top-level constant

  1. @Deprecated('Use GLOBAL_ALLOC_FLAGS.GMEM_MOVEABLE instead')
int const GMEM_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 GMEM_FIXED.

Implementation

@Deprecated('Use GLOBAL_ALLOC_FLAGS.GMEM_MOVEABLE instead')
const GMEM_MOVABLE = 0x0002;