コード例 #1
0
 public static extern int NtQueryInformationProcess(SafeProcessHandle processHandle, PROCESS_INFORMATION_CLASS processInformationClass, ref IntPtr processInformation, int processInformationLength, out int returnLength);
コード例 #2
0
 public static extern int NtSetInformationProcess(IntPtr processHandle,
                                                  PROCESS_INFORMATION_CLASS processInformationClass, ref IntPtr processInformation, uint processInformationLength);
コード例 #3
0
ファイル: Functions.cs プロジェクト: andyvand/ProcessHacker
 public static extern int ZwQueryInformationProcess(int ProcessHandle, PROCESS_INFORMATION_CLASS ProcessInformationClass,
     ref PROCESS_BASIC_INFORMATION ProcessInformation, int ProcessInformationLength, out int ReturnLength);
コード例 #4
0
ファイル: NtDllApi.cs プロジェクト: trumsuhu/gsudo
 public static extern int NtSetInformationProcess(IntPtr hProcess, PROCESS_INFORMATION_CLASS processInformationClass, ref PROCESS_ACCESS_TOKEN processInformation, int processInformationLength);
コード例 #5
0
 internal static extern NT_STATUS NtQueryInformationProcess(
     [In] IntPtr ProcessHandle,
     [In] PROCESS_INFORMATION_CLASS ProcessInformationClass,
     [In] IntPtr ProcessInformation,
     [In] int ProcessInformationLength,
     [Out] out int ReturnLength);
コード例 #6
0
ファイル: Functions.cs プロジェクト: andyvand/ProcessHacker
 public static extern int ZwQueryInformationProcess(int ProcessHandle, PROCESS_INFORMATION_CLASS ProcessInformationClass,
     ref POOLED_USAGE_AND_LIMITS ProcessInformation, int ProcessInformationLength, out int ReturnLength);
コード例 #7
0
 public static extern int ZwQueryInformationProcess(int ProcessHandle, PROCESS_INFORMATION_CLASS ProcessInformationClass,
                                                    ref PROCESS_BASIC_INFORMATION ProcessInformation, int ProcessInformationLength, out int ReturnLength);
コード例 #8
0
ファイル: Kernel32.cs プロジェクト: zodiacon/ManagedWindows
 internal unsafe static extern bool GetProcessInformation(SafeHandle hProcess, PROCESS_INFORMATION_CLASS infoClass, void *information, int size);
コード例 #9
0
 public static extern int ZwQueryInformationProcess(int ProcessHandle, PROCESS_INFORMATION_CLASS ProcessInformationClass,
                                                    ref POOLED_USAGE_AND_LIMITS ProcessInformation, int ProcessInformationLength, out int ReturnLength);
コード例 #10
0
 public static extern int NtQueryInformationProcess(IntPtr hProcess, PROCESS_INFORMATION_CLASS processInformationClass, ref IO_PRIORITY_HINT processInformation, int processInformationLength, IntPtr returnLength);
コード例 #11
0
 private static extern bool NtSetInformationProcess(IntPtr hProcess, PROCESS_INFORMATION_CLASS ProcessInformationClass, IntPtr ProcessInformation, uint ProcessInformationSize);
コード例 #12
0
ファイル: Win32.cs プロジェクト: william0wang/meditor
 public static extern int NtSetInformationProcess(int processHandle,
     PROCESS_INFORMATION_CLASS processInformationClass, IntPtr processInformation, uint processInformationLength);
コード例 #13
0
ファイル: Win32.cs プロジェクト: william0wang/meditor
 public static extern int NtQueryInformationProcess(int processHandle,
     PROCESS_INFORMATION_CLASS processInformationClass, IntPtr processInformation, int processInformationLength,
     ref int returnLength);