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.
StgmConstants (Enums)
.
/// <summary>
/// STGM constants are flags that indicate conditions for creating and deleting the object and access modes for the object.
/// </summary>
[Flags]
enum StgmConstants : uint
{
// Access
STGM_READ = 0x00000000,
STGM_WRITE = 0x00000001,
STGM_READWRITE = 0x00000002,
// Sharing
STGM_SHARE_DENY_NONE = 0x00000040,
STGM_SHARE_DENY_READ = 0x00000030,
STGM_SHARE_DENY_WRITE = 0x00000020,
STGM_SHARE_EXCLUSIVE = 0x00000010,
STGM_PRIORITY = 0x00040000,
// Creation
STGM_CREATE = 0x00001000,
STGM_CONVERT = 0x00020000,
STGM_FAILIFTHERE = 0x00000000,
// Transactioning
STGM_DIRECT = 0x00000000,
STGM_TRANSACTED = 0x00010000,
// Transactioning Performance
STGM_NOSCRATCH = 0x00100000,
STGM_NOSNAPSHOT = 0x00200000,
// Direct SWMR and Simple
STGM_SIMPLE = 0x08000000,
STGM_DIRECT_SWMR = 0x00400000,
// Delete On Release
STGM_DELETEONRELEASE = 0x04000000,
}
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!