ntoskrnl.exe: Added IoGetCurrentProcess stub.
This commit is contained in:
parent
694f27743f
commit
992316ab4a
|
@ -1112,6 +1112,15 @@ NTSTATUS WINAPI FsRtlRegisterUncProvider(PHANDLE MupHandle, PUNICODE_STRING Redi
|
|||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* IoGetCurrentProcess / PsGetCurrentProcess (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
PEPROCESS WINAPI IoGetCurrentProcess(void)
|
||||
{
|
||||
FIXME("() stub\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* KeGetCurrentThread / PsGetCurrentThread (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -378,7 +378,7 @@
|
|||
@ stub IoGetBaseFileSystemDeviceObject
|
||||
@ stub IoGetBootDiskInformation
|
||||
@ stdcall IoGetConfigurationInformation()
|
||||
@ stub IoGetCurrentProcess
|
||||
@ stdcall IoGetCurrentProcess()
|
||||
@ stub IoGetDeviceAttachmentBaseRef
|
||||
@ stub IoGetDeviceInterfaceAlias
|
||||
@ stdcall IoGetDeviceInterfaces(ptr ptr long ptr)
|
||||
|
@ -849,7 +849,7 @@
|
|||
@ stub PsDisableImpersonation
|
||||
@ stub PsEstablishWin32Callouts
|
||||
@ stub PsGetContextThread
|
||||
@ stub PsGetCurrentProcess
|
||||
@ stdcall PsGetCurrentProcess() IoGetCurrentProcess
|
||||
@ stdcall PsGetCurrentProcessId()
|
||||
@ stub PsGetCurrentProcessSessionId
|
||||
@ stdcall PsGetCurrentThread() KeGetCurrentThread
|
||||
|
|
Loading…
Reference in New Issue