Skip to content
Snippets Groups Projects
Commit ebb1fec5 authored by Austin English's avatar Austin English Committed by Alexandre Julliard
Browse files

ntoskrnl.exe: Add a stub for PsLookupProcessByProcessId.

parent 53efed91
No related branches found
No related tags found
No related merge requests found
......@@ -1604,6 +1604,15 @@ NTSTATUS WINAPI PsSetLoadImageNotifyRoutine(PLOAD_IMAGE_NOTIFY_ROUTINE routine)
return STATUS_SUCCESS;
}
/*****************************************************
* PsLookupProcessByProcessId (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI PsLookupProcessByProcessId(HANDLE processid, PEPROCESS *process)
{
FIXME("(%p %p) stub\n", processid, process);
return STATUS_NOT_IMPLEMENTED;
}
/*****************************************************
* DllMain
*/
......
......@@ -892,7 +892,7 @@
@ stub PsIsThreadImpersonating
@ stub PsIsThreadTerminating
@ stub PsJobType
@ stub PsLookupProcessByProcessId
@ stdcall PsLookupProcessByProcessId(ptr ptr)
@ stub PsLookupProcessThreadByCid
@ stub PsLookupThreadByThreadId
@ stub PsProcessType
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment