Commit 6b50fa31 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ntoskrnl.exe: Add PsReferenceProcessFilePointer stub.

parent 91321d97
...@@ -2789,6 +2789,16 @@ NTSTATUS WINAPI PsRemoveCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE ...@@ -2789,6 +2789,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.@) * PsTerminateSystemThread (NTOSKRNL.EXE.@)
*/ */
NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS status) NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS status)
......
...@@ -917,6 +917,7 @@ ...@@ -917,6 +917,7 @@
@ stub PsProcessType @ stub PsProcessType
@ stub PsReferenceImpersonationToken @ stub PsReferenceImpersonationToken
@ stub PsReferencePrimaryToken @ stub PsReferencePrimaryToken
@ stdcall PsReferenceProcessFilePointer(ptr ptr)
@ stdcall PsReleaseProcessExitSynchronization(ptr) @ stdcall PsReleaseProcessExitSynchronization(ptr)
@ stdcall PsRemoveCreateThreadNotifyRoutine(ptr) @ stdcall PsRemoveCreateThreadNotifyRoutine(ptr)
@ stdcall PsRemoveLoadImageNotifyRoutine(ptr) @ stdcall PsRemoveLoadImageNotifyRoutine(ptr)
......
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