@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm 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: GlobalMemoryFlags http://msdn.microsoft.com/library/default.asp?url=/library/en-us/memory/base/globalalloc.asp on MSDN
Edit Enums.GlobalMemor...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.