Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
LocalMemoryFlags (Enums)
.
Summary
A list of flags describing the allocation of memory on the local heap.
These flags may be used with the LocalAlloc function.
C# Definition:
[Flags]
enum LocalMemoryFlags {
LMEM_FIXED = 0x0000,
LMEM_MOVEABLE = 0x0002,
LMEM_NOCOMPACT = 0x0010,
LMEM_NODISCARD = 0x0020,
LMEM_ZEROINIT = 0x0040,
LMEM_MODIFY = 0x0080,
LMEM_DISCARDABLE = 0x0F00,
LMEM_VALID_FLAGS = 0x0F72,
LMEM_INVALID_HANDLE = 0x8000,
LHND = (LMEM_MOVEABLE | LMEM_ZEROINIT),
LPTR = (LMEM_FIXED | LMEM_ZEROINIT),
NONZEROLHND = (LMEM_MOVEABLE),
NONZEROLPTR = (LMEM_FIXED),
}
VB Definition:
Enum LocalMemoryFlags
TODO
End Enum
Notes:
None.
Documentation:
See the LocalAlloc function on MSDN.
Allocates the specified number of bytes from the heap.
7/6/2008 2:54:09 AM - -121.102.64.14
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!