FileMapAccessType (Enums)
Last changed: anonymous

.
Summary
Specifies the desired access type to the view of memory mapped file

C# Definition:

enum FileMapAccessType : uint {
    Copy =      0x01,
    Write =     0x02,
    Read =      0x04,
    AllAccess = 0x08,
    Execute =   0x20,
}

VB Definition:

Enum FileMapAccessType
   TODO
End Enum

Notes:

None.

Documentation