ntoskrnl: Add stub for SeLocateProcessImageName.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47601 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
558d7fd1b2
commit
f04e7d2650
|
@ -3800,6 +3800,16 @@ BOOLEAN WINAPI SePrivilegeCheck(PRIVILEGE_SET *privileges, SECURITY_SUBJECT_CONT
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* 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.@)
|
||||
*/
|
||||
|
|
|
@ -1257,6 +1257,7 @@
|
|||
@ stub SeFreePrivileges
|
||||
@ stub SeImpersonateClient
|
||||
@ stub SeImpersonateClientEx
|
||||
@ stdcall SeLocateProcessImageName(ptr ptr)
|
||||
@ stub SeLockSubjectContext
|
||||
@ stub SeMarkLogonSessionForTerminationNotification
|
||||
@ stub SeOpenObjectAuditAlarm
|
||||
|
|
Loading…
Reference in New Issue