[PATCH 0/1] MR10270: advapi32: Add SaferiIsExecutableFileType stub.
From: Doug Johnson <dougvj@gmail.com> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=59314 --- dlls/advapi32/advapi32.spec | 2 +- dlls/advapi32/security.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec index 4a9db829f67..46f1b753f5a 100644 --- a/dlls/advapi32/advapi32.spec +++ b/dlls/advapi32/advapi32.spec @@ -726,7 +726,7 @@ # @ stub SaferiChangeRegistryScope # @ stub SaferiCompareTokenLevels # @ stub SaferiIsDllAllowed -# @ stub SaferiIsExecutableFileType +@ stdcall SaferiIsExecutableFileType (wstr long) # @ stub SaferiPopulateDefaultsInRegistry # @ stub SaferiRecordEventLogEntry # @ stub SaferiReplaceProcessThreadTokens diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c index 458ccc8913e..55be004cef3 100644 --- a/dlls/advapi32/security.c +++ b/dlls/advapi32/security.c @@ -3189,6 +3189,15 @@ BOOL WINAPI SaferSetLevelInformation(SAFER_LEVEL_HANDLE handle, SAFER_OBJECT_INF return FALSE; } +/****************************************************************************** + * SaferiIsExecutableFileType [ADVAPI32.@] + */ +BOOL WINAPI SaferiIsExecutableFileType(const WCHAR *path, BOOLEAN shell_execute) +{ + FIXME("(%s, %u) stub\n", debugstr_w(path), shell_execute); + return FALSE; +} + /****************************************************************************** * LookupSecurityDescriptorPartsA [ADVAPI32.@] */ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10270
participants (2)
-
Doug Johnson -
Doug Johnson (@dougvj)