using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Video.DirectShow { internal enum FileMapAccess : uint { Write = 0x00000002, Read = 0x00000004, AllAccess = 0x000f001f, Copy = 0x00000001, Execute = 0x00000020 } }