Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

GlobalMemoryFlags (Enums)
 
.
Summary
Global Memory Flags

C# Definition:

[Flags]
enum GlobalMemoryFlags :uint {
    GMEM_FIXED = 0x0000,
     GMEM_MOVEABLE = 0x0002,      
     GMEM_ZEROINIT = 0x0040,
     GMEM_MODIFY = 0x0080,        
     GMEM_VALID_FLAGS = 0x7F72,
     GMEM_INVALID_HANDLE = 0x8000,
     GHND = (GMEM_MOVEABLE | GMEM_ZEROINIT),
     GPTR = (GMEM_FIXED | GMEM_ZEROINIT),
     /*The following values are obsolete, but are provided for compatibility with 16-bit Windows. They are ignored.*/
     GMEM_DDESHARE = 0x2000,
     GMEM_DISCARDABLE = 0x0100,
     GMEM_LOWER = GMEM_NOT_BANKED,
     GMEM_NOCOMPACT = 0x0010,
     GMEM_NODISCARD = 0x0020,
     GMEM_NOT_BANKED = 0x1000,
     GMEM_NOTIFY = 0x4000,
     GMEM_SHARE = 0x2000
}

VB Definition:

Enum GlobalMemoryFlags
   TODO
End Enum

Notes:

None.

Documentation
 

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!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions