Commit 992316ab authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ntoskrnl.exe: Added IoGetCurrentProcess stub.

parent 694f2774
...@@ -1113,6 +1113,15 @@ NTSTATUS WINAPI FsRtlRegisterUncProvider(PHANDLE MupHandle, PUNICODE_STRING Redi ...@@ -1113,6 +1113,15 @@ NTSTATUS WINAPI FsRtlRegisterUncProvider(PHANDLE MupHandle, PUNICODE_STRING Redi
} }
/*********************************************************************** /***********************************************************************
* IoGetCurrentProcess / PsGetCurrentProcess (NTOSKRNL.EXE.@)
*/
PEPROCESS WINAPI IoGetCurrentProcess(void)
{
FIXME("() stub\n");
return NULL;
}
/***********************************************************************
* KeGetCurrentThread / PsGetCurrentThread (NTOSKRNL.EXE.@) * KeGetCurrentThread / PsGetCurrentThread (NTOSKRNL.EXE.@)
*/ */
PRKTHREAD WINAPI KeGetCurrentThread(void) PRKTHREAD WINAPI KeGetCurrentThread(void)
......
...@@ -378,7 +378,7 @@ ...@@ -378,7 +378,7 @@
@ stub IoGetBaseFileSystemDeviceObject @ stub IoGetBaseFileSystemDeviceObject
@ stub IoGetBootDiskInformation @ stub IoGetBootDiskInformation
@ stdcall IoGetConfigurationInformation() @ stdcall IoGetConfigurationInformation()
@ stub IoGetCurrentProcess @ stdcall IoGetCurrentProcess()
@ stub IoGetDeviceAttachmentBaseRef @ stub IoGetDeviceAttachmentBaseRef
@ stub IoGetDeviceInterfaceAlias @ stub IoGetDeviceInterfaceAlias
@ stdcall IoGetDeviceInterfaces(ptr ptr long ptr) @ stdcall IoGetDeviceInterfaces(ptr ptr long ptr)
...@@ -849,7 +849,7 @@ ...@@ -849,7 +849,7 @@
@ stub PsDisableImpersonation @ stub PsDisableImpersonation
@ stub PsEstablishWin32Callouts @ stub PsEstablishWin32Callouts
@ stub PsGetContextThread @ stub PsGetContextThread
@ stub PsGetCurrentProcess @ stdcall PsGetCurrentProcess() IoGetCurrentProcess
@ stdcall PsGetCurrentProcessId() @ stdcall PsGetCurrentProcessId()
@ stub PsGetCurrentProcessSessionId @ stub PsGetCurrentProcessSessionId
@ stdcall PsGetCurrentThread() KeGetCurrentThread @ stdcall PsGetCurrentThread() KeGetCurrentThread
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment