blob: 2a5f23bc8ef9679dc7d38fb29ddd3e9a15f2c679 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
}
}
|