mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:26:03 +00:00
[PSDK] Add argument names to SHRegGetValue functions
This commit is contained in:
parent
db180c29c7
commit
c6a8a9c145
1 changed files with 12 additions and 12 deletions
|
@ -262,23 +262,23 @@ typedef INT SRRF;
|
||||||
LSTATUS
|
LSTATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
SHRegGetValueA(
|
SHRegGetValueA(
|
||||||
_In_ HKEY,
|
_In_ HKEY hkey,
|
||||||
_In_opt_ LPCSTR,
|
_In_opt_ LPCSTR pszSubKey,
|
||||||
_In_opt_ LPCSTR,
|
_In_opt_ LPCSTR pszValue,
|
||||||
_In_ SRRF,
|
_In_ SRRF srrfFlags,
|
||||||
_Out_opt_ LPDWORD,
|
_Out_opt_ LPDWORD pdwType,
|
||||||
_Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID,
|
_Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID pvData,
|
||||||
_Inout_opt_ LPDWORD pcbData);
|
_Inout_opt_ LPDWORD pcbData);
|
||||||
|
|
||||||
LSTATUS
|
LSTATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
SHRegGetValueW(
|
SHRegGetValueW(
|
||||||
_In_ HKEY,
|
_In_ HKEY hkey,
|
||||||
_In_opt_ LPCWSTR,
|
_In_opt_ LPCWSTR pszSubKey,
|
||||||
_In_opt_ LPCWSTR,
|
_In_opt_ LPCWSTR pszValue,
|
||||||
_In_ SRRF,
|
_In_ SRRF srrfFlags,
|
||||||
_Out_opt_ LPDWORD,
|
_Out_opt_ LPDWORD pdwType,
|
||||||
_Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID,
|
_Out_writes_bytes_to_opt_(*pcbData, *pcbData) LPVOID pvData,
|
||||||
_Inout_opt_ LPDWORD pcbData);
|
_Inout_opt_ LPDWORD pcbData);
|
||||||
|
|
||||||
#define SHRegGetValue WINELIB_NAME_AW(SHRegGetValue)
|
#define SHRegGetValue WINELIB_NAME_AW(SHRegGetValue)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue