ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/Threading/ThreadAccess.cs
Revision: 102
Committed: Thu May 10 09:53:27 2012 UTC (11 years, 4 months ago) by william
File size: 521 byte(s)
Log Message:

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace libWin32.Win32.Threading
7 {
8 [Flags]
9 public enum ThreadAccess : int
10 {
11 TERMINATE = (0x0001),
12 SUSPEND_RESUME = (0x0002),
13 GET_CONTEXT = (0x0008),
14 SET_CONTEXT = (0x0010),
15 SET_INFORMATION = (0x0020),
16 QUERY_INFORMATION = (0x0040),
17 SET_THREAD_TOKEN = (0x0080),
18 IMPERSONATE = (0x0100),
19 DIRECT_IMPERSONATION = (0x0200)
20 }
21 }