Uses of Class
com.jniwrapper.win32.system.MemoryAllocationAttributes

Packages that use MemoryAllocationAttributes
com.jniwrapper.win32.system The com.jniwrapper.win32.system package contains classes, which provide you with Java wrappers for commonly used Windows system functions and related structures and types. 
 

Uses of MemoryAllocationAttributes in com.jniwrapper.win32.system
 

Fields in com.jniwrapper.win32.system declared as MemoryAllocationAttributes
static MemoryAllocationAttributes MemoryAllocationAttributes.FIXED
          Allocates fixed memory.
static MemoryAllocationAttributes MemoryAllocationAttributes.LHND
          Combines MOVEABLE, ZEROINIT attrbiutes.
static MemoryAllocationAttributes MemoryAllocationAttributes.LPTR
          Combines FIXED, ZEROINIT attrbiutes.
static MemoryAllocationAttributes MemoryAllocationAttributes.MOVEABLE
          Allocates movable memory.
static MemoryAllocationAttributes MemoryAllocationAttributes.ZEROINIT
          Sets all allocated bytes to zero.
 

Constructors in com.jniwrapper.win32.system with parameters of type MemoryAllocationAttributes
GlobalMemoryBlock(int size, MemoryAllocationAttributes attributes)
          Allocates the global memory block of the specified size.
LocalMemoryBlock(int size, MemoryAllocationAttributes attributes)
          Allocates a local memory block of the specified size.