Commit f04e7d26 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

ntoskrnl: Add stub for SeLocateProcessImageName.

parent 558d7fd1
......@@ -3801,6 +3801,16 @@ BOOLEAN WINAPI SePrivilegeCheck(PRIVILEGE_SET *privileges, SECURITY_SUBJECT_CONT
}
/*********************************************************************
* SeLocateProcessImageName (NTOSKRNL.@)
*/
NTSTATUS WINAPI SeLocateProcessImageName(PEPROCESS process, UNICODE_STRING **image_name)
{
FIXME("stub: %p %p\n", process, image_name);
if (image_name) *image_name = NULL;
return STATUS_NOT_IMPLEMENTED;
}
/*********************************************************************
* KeFlushQueuedDpcs (NTOSKRNL.@)
*/
void WINAPI KeFlushQueuedDpcs(void)
......
......@@ -1257,6 +1257,7 @@
@ stub SeFreePrivileges
@ stub SeImpersonateClient
@ stub SeImpersonateClientEx
@ stdcall SeLocateProcessImageName(ptr ptr)
@ stub SeLockSubjectContext
@ stub SeMarkLogonSessionForTerminationNotification
@ stub SeOpenObjectAuditAlarm
......
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