ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/libWin32/Win32/Threading/ThreadAccess.cs
Revision: 88
Committed: Wed May 9 20:52:20 2012 UTC (11 years ago) by william
File size: 544 byte(s)
Log Message:

File Contents

# User Rev Content
1 william 88 using System;
2     using System.Collections.Generic;
3     using System.Text;
4    
5     namespace libWin32.Win32.Threading
6     {
7     [Flags]
8     public enum ThreadAccess : int
9     {
10     PROCESS_TOKEN_QUERY = (0x0008),
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    
22     }