com.jniwrapper.win32.system
Class MemoryAllocationAttributes

java.lang.Object
  extended by com.jniwrapper.util.EnumItem
      extended by com.jniwrapper.win32.system.MemoryAllocationAttributes

public class MemoryAllocationAttributes
extends com.jniwrapper.util.EnumItem

This is an enumeration class defining memory allocation attribues.


Field Summary
static MemoryAllocationAttributes FIXED
          Allocates fixed memory.
static MemoryAllocationAttributes LHND
          Combines MOVEABLE, ZEROINIT attrbiutes.
static MemoryAllocationAttributes LPTR
          Combines FIXED, ZEROINIT attrbiutes.
static MemoryAllocationAttributes MOVEABLE
          Allocates movable memory.
static MemoryAllocationAttributes ZEROINIT
          Sets all allocated bytes to zero.
 
Method Summary
 
Methods inherited from class com.jniwrapper.util.EnumItem
equals, getLongValue, getValue, hashCode, isOneOf
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FIXED

public static final MemoryAllocationAttributes FIXED
Allocates fixed memory.


MOVEABLE

public static final MemoryAllocationAttributes MOVEABLE
Allocates movable memory.


ZEROINIT

public static final MemoryAllocationAttributes ZEROINIT
Sets all allocated bytes to zero.


LPTR

public static final MemoryAllocationAttributes LPTR
Combines FIXED, ZEROINIT attrbiutes.


LHND

public static final MemoryAllocationAttributes LHND
Combines MOVEABLE, ZEROINIT attrbiutes.