コード例 #1
0
ファイル: Functions.cs プロジェクト: andyvand/ProcessHacker
 public static extern bool DuplicateTokenEx(int ExistingToken, TOKEN_RIGHTS DesiredAccess,
     int TokenAttributes, SECURITY_IMPERSONATION_LEVEL ImpersonationLevel, TOKEN_TYPE TokenType,
     out int NewToken);
コード例 #2
0
ファイル: Functions.cs プロジェクト: andyvand/ProcessHacker
 public static extern bool OpenThreadToken(int ThreadHandle, TOKEN_RIGHTS DesiredAccess,
     bool OpenAsSelf, out int TokenHandle);
コード例 #3
0
ファイル: Functions.cs プロジェクト: andyvand/ProcessHacker
 public static extern bool OpenProcessToken(int ProcessHandle, TOKEN_RIGHTS DesiredAccess,
     out int TokenHandle);
コード例 #4
0
 public static extern bool DuplicateTokenEx(int ExistingToken, TOKEN_RIGHTS DesiredAccess,
                                            int TokenAttributes, SECURITY_IMPERSONATION_LEVEL ImpersonationLevel, TOKEN_TYPE TokenType,
                                            out int NewToken);
コード例 #5
0
 public static extern bool OpenThreadToken(int ThreadHandle, TOKEN_RIGHTS DesiredAccess,
                                           bool OpenAsSelf, out int TokenHandle);
コード例 #6
0
 public static extern bool OpenProcessToken(int ProcessHandle, TOKEN_RIGHTS DesiredAccess,
                                            out int TokenHandle);