ntoskrnl.exe: Add PsReferenceProcessFilePointer stub.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2019-02-08 17:00:33 +01:00 committed by Alexandre Julliard
parent 91321d97cf
commit 6b50fa3161
2 changed files with 11 additions and 0 deletions

View File

@ -2788,6 +2788,16 @@ NTSTATUS WINAPI PsRemoveCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE
}
/***********************************************************************
* PsReferenceProcessFilePointer (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI PsReferenceProcessFilePointer(PEPROCESS process, FILE_OBJECT **file)
{
FIXME("%p %p\n", process, file);
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* PsTerminateSystemThread (NTOSKRNL.EXE.@)
*/

View File

@ -917,6 +917,7 @@
@ stub PsProcessType
@ stub PsReferenceImpersonationToken
@ stub PsReferencePrimaryToken
@ stdcall PsReferenceProcessFilePointer(ptr ptr)
@ stdcall PsReleaseProcessExitSynchronization(ptr)
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
@ stdcall PsRemoveLoadImageNotifyRoutine(ptr)