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:
Alex Henrie 2019-08-07 21:42:41 -06:00 committed by Alexandre Julliard
parent 558d7fd1b2
commit f04e7d2650
2 changed files with 11 additions and 0 deletions

View File

@ -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.@)
*/

View File

@ -1257,6 +1257,7 @@
@ stub SeFreePrivileges
@ stub SeImpersonateClient
@ stub SeImpersonateClientEx
@ stdcall SeLocateProcessImageName(ptr ptr)
@ stub SeLockSubjectContext
@ stub SeMarkLogonSessionForTerminationNotification
@ stub SeOpenObjectAuditAlarm