Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57292
-- v3: apphelp: Add stub SetPermLayerState(). apphelp: Add stub SdbGetPermLayerKeys(). apphelp: Add stub SdbSetPermLayerKeys().
From: Vijay Kiran Kamuju infyquest@gmail.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57292 --- dlls/apphelp/apphelp.c | 7 +++++++ dlls/apphelp/apphelp.spec | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/dlls/apphelp/apphelp.c b/dlls/apphelp/apphelp.c index f5e2f167a66..b86b111eb29 100644 --- a/dlls/apphelp/apphelp.c +++ b/dlls/apphelp/apphelp.c @@ -102,3 +102,10 @@ void WINAPI SdbGetAppPatchDir(HSDB hsdb, WCHAR *path, DWORD size) FIXME("stub: %p %p %ld\n", hsdb, path, size); if (size && path) *path = 0; } + +BOOL WINAPI SdbSetPermLayerKeys( PCWSTR path, PCWSTR layers, BOOL machine ) +{ + FIXME("stub: %s %s %d\n", debugstr_w(path), debugstr_w(layers), machine); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return TRUE; +} diff --git a/dlls/apphelp/apphelp.spec b/dlls/apphelp/apphelp.spec index 43a1abf6620..77d0795c8c4 100644 --- a/dlls/apphelp/apphelp.spec +++ b/dlls/apphelp/apphelp.spec @@ -140,7 +140,7 @@ @ stub SdbSetApphelpDebugParameters @ stub SdbSetEntryFlags @ stub SdbSetImageType -@ stub SdbSetPermLayerKeys +@ stdcall SdbSetPermLayerKeys(wstr wstr long) @ stub SdbShowApphelpDialog @ stub SdbShowApphelpFromQuery @ stub SdbStartIndexing
From: Vijay Kiran Kamuju infyquest@gmail.com
--- dlls/apphelp/apphelp.c | 7 +++++++ dlls/apphelp/apphelp.spec | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/dlls/apphelp/apphelp.c b/dlls/apphelp/apphelp.c index b86b111eb29..7c83681175e 100644 --- a/dlls/apphelp/apphelp.c +++ b/dlls/apphelp/apphelp.c @@ -109,3 +109,10 @@ BOOL WINAPI SdbSetPermLayerKeys( PCWSTR path, PCWSTR layers, BOOL machine ) SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return TRUE; } + +BOOL WINAPI SdbGetPermLayerKeys( PCWSTR path, PWSTR layers, PDWORD size, DWORD flags ) +{ + FIXME("stub: %s %p %p %ld\n", debugstr_w(path), layers, size, flags); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return TRUE; +} diff --git a/dlls/apphelp/apphelp.spec b/dlls/apphelp/apphelp.spec index 77d0795c8c4..4a205214a3b 100644 --- a/dlls/apphelp/apphelp.spec +++ b/dlls/apphelp/apphelp.spec @@ -86,7 +86,7 @@ @ stub SdbGetNamedLayer @ stub SdbGetNextChild @ stub SdbGetNthUserSdb -@ stub SdbGetPermLayerKeys +@ stdcall SdbGetPermLayerKeys(wstr ptr ptr long) @ stub SdbGetShowDebugInfoOption @ stub SdbGetShowDebugInfoOptionValue @ stub SdbGetStandardDatabaseGUID
From: Vijay Kiran Kamuju infyquest@gmail.com
--- dlls/apphelp/apphelp.c | 7 +++++++ dlls/apphelp/apphelp.spec | 1 + 2 files changed, 8 insertions(+)
diff --git a/dlls/apphelp/apphelp.c b/dlls/apphelp/apphelp.c index 7c83681175e..66e59d73c52 100644 --- a/dlls/apphelp/apphelp.c +++ b/dlls/apphelp/apphelp.c @@ -103,6 +103,13 @@ void WINAPI SdbGetAppPatchDir(HSDB hsdb, WCHAR *path, DWORD size) if (size && path) *path = 0; }
+BOOL WINAPI SetPermLayerState( PCWSTR path, PCWSTR layers, DWORD flags, BOOL machine, BOOL state) +{ + FIXME("stub: %s %s %ld %d %d\n", debugstr_w(path), debugstr_w(layers), flags, machine, state); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return TRUE; +} + BOOL WINAPI SdbSetPermLayerKeys( PCWSTR path, PCWSTR layers, BOOL machine ) { FIXME("stub: %s %s %d\n", debugstr_w(path), debugstr_w(layers), machine); diff --git a/dlls/apphelp/apphelp.spec b/dlls/apphelp/apphelp.spec index 4a205214a3b..979781dedda 100644 --- a/dlls/apphelp/apphelp.spec +++ b/dlls/apphelp/apphelp.spec @@ -161,6 +161,7 @@ @ stub SdbWriteStringTag @ stub SdbWriteStringTagDirect @ stub SdbWriteWORDTag +@ stdcall SetPermLayerState(wstr ptr ptr long long) @ stub SetPermLayers @ stub ShimDbgPrint @ stub ShimDumpCache