https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c6a8a9c1458f7b8c91b29…
commit c6a8a9c1458f7b8c91b29e4a2606f88cd8592260
Author: Mark Jansen <mark.jansen(a)reactos.org>
AuthorDate: Mon Apr 27 16:00:20 2020 +0200
Commit: Mark Jansen <mark.jansen(a)reactos.org>
CommitDate: Sun May 17 17:08:57 2020 +0200
[PSDK] Add argument names to SHRegGetValue functions
---
sdk/include/psdk/shlwapi.h | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/sdk/include/psdk/shlwapi.h b/sdk/include/psdk/shlwapi.h
index 65f9db98312..6c796acfc38 100644
--- a/sdk/include/psdk/shlwapi.h
+++ b/sdk/include/psdk/shlwapi.h
@@ -262,23 +262,23 @@ typedef INT SRRF;
LSTATUS
WINAPI
SHRegGetValueA(
- _In_ HKEY,
- _In_opt_ LPCSTR,
- _In_opt_ LPCSTR,
- _In_ SRRF,
- _Out_opt_ LPDWORD,
- _Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID,
+ _In_ HKEY hkey,
+ _In_opt_ LPCSTR pszSubKey,
+ _In_opt_ LPCSTR pszValue,
+ _In_ SRRF srrfFlags,
+ _Out_opt_ LPDWORD pdwType,
+ _Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID pvData,
_Inout_opt_ LPDWORD pcbData);
LSTATUS
WINAPI
SHRegGetValueW(
- _In_ HKEY,
- _In_opt_ LPCWSTR,
- _In_opt_ LPCWSTR,
- _In_ SRRF,
- _Out_opt_ LPDWORD,
- _Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID,
+ _In_ HKEY hkey,
+ _In_opt_ LPCWSTR pszSubKey,
+ _In_opt_ LPCWSTR pszValue,
+ _In_ SRRF srrfFlags,
+ _Out_opt_ LPDWORD pdwType,
+ _Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID pvData,
_Inout_opt_ LPDWORD pcbData);
#define SHRegGetValue WINELIB_NAME_AW(SHRegGetValue)