public static extern uint NtQueryObject(int ObjectHandle,
     OBJECT_INFORMATION_CLASS ObjectInformationClass,
     IntPtr ObjectInformation,
     ulong Length,
     ref ulong ResultLength);
Пример #2
0
 private static extern NTSTATUS NtQueryObject(IntPtr ObjectHandle, OBJECT_INFORMATION_CLASS ObjectInformationClass, 
     IntPtr ObjectInformation, int ObjectInformationLength, out int ReturnLength);
Пример #3
0
 public static extern NT_STATUS NtQueryObject(IntPtr ObjectHandle, OBJECT_INFORMATION_CLASS ObjectInformationClass, IntPtr ObjectInformation, int ObjectInformationLength, ref int returnLength);
Пример #4
0
 public static extern NT_STATUS NtQueryObject(
     [In] IntPtr Handle,
     [In] OBJECT_INFORMATION_CLASS ObjectInformationClass,
     [In] IntPtr ObjectInformation,
     [In] int ObjectInformationLength,
     [Out] out int ReturnLength);
Пример #5
0
 public static extern NTSTATUS NtQueryObject(
     SafeHandle Handle,
     OBJECT_INFORMATION_CLASS ObjectInformationClass,
     IntPtr ObjectInformation,
     uint ObjectInformationLength,
     out uint ReturnLength);
 public static extern uint NtQueryObject(int ObjectHandle,
                                         OBJECT_INFORMATION_CLASS ObjectInformationClass,
                                         IntPtr ObjectInformation,
                                         ulong Length,
                                         ref ulong ResultLength);
Пример #7
0
 private static extern NTSTATUS NtQueryObject(IntPtr ObjectHandle, OBJECT_INFORMATION_CLASS ObjectInformationClass,
                                              IntPtr ObjectInformation, int ObjectInformationLength, out int ReturnLength);
Пример #8
0
 public static extern uint ZwQueryObject(int Handle, OBJECT_INFORMATION_CLASS ObjectInformationClass,
     IntPtr ObjectInformation, int ObjectInformationLength, out int ReturnLength);
Пример #9
0
 public static extern uint ZwQueryObject(int Handle, OBJECT_INFORMATION_CLASS ObjectInformationClass,
                                         IntPtr ObjectInformation, int ObjectInformationLength, out int ReturnLength);
Пример #10
0
		static extern NtStatus NtQueryObject(IntPtr objectHandle, OBJECT_INFORMATION_CLASS informationClass, byte[] informationPtr, int informationLength, ref int returnLength);
Пример #11
0
 internal static extern NTSTATUS NtQueryObject(
     [In] SafeGenericHandle handle,
     [In] OBJECT_INFORMATION_CLASS objectInformationClass,
     [In] IntPtr objectInformation,
     [In] uint objectInformationLength,
     [Out] out uint returnLength);
Пример #12
0
 private static extern uint NtQueryObject(IntPtr objectHandle, OBJECT_INFORMATION_CLASS informationClass, IntPtr informationPtr, uint informationLength, ref int returnLength);
Пример #13
0
 public static extern NtStatus NtQueryObject(SafeFileHandle objectHandle, OBJECT_INFORMATION_CLASS informationClass,
                                             IntPtr informationPtr, uint informationLength, ref uint returnLength);