diff options
Diffstat (limited to '')
-rw-r--r-- | src/dutil/inc/regutil.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dutil/inc/regutil.h b/src/dutil/inc/regutil.h index 897b9d03..2f09d244 100644 --- a/src/dutil/inc/regutil.h +++ b/src/dutil/inc/regutil.h | |||
@@ -50,7 +50,7 @@ typedef LSTATUS (APIENTRY *PFN_REGENUMKEYEXW)( | |||
50 | __out LPWSTR lpName, | 50 | __out LPWSTR lpName, |
51 | __inout LPDWORD lpcName, | 51 | __inout LPDWORD lpcName, |
52 | __reserved LPDWORD lpReserved, | 52 | __reserved LPDWORD lpReserved, |
53 | __inout LPWSTR lpClass, | 53 | __inout_opt LPWSTR lpClass, |
54 | __inout_opt LPDWORD lpcClass, | 54 | __inout_opt LPDWORD lpcClass, |
55 | __out_opt PFILETIME lpftLastWriteTime | 55 | __out_opt PFILETIME lpftLastWriteTime |
56 | ); | 56 | ); |
@@ -66,7 +66,7 @@ typedef LSTATUS (APIENTRY *PFN_REGENUMVALUEW)( | |||
66 | ); | 66 | ); |
67 | typedef LSTATUS (APIENTRY *PFN_REGQUERYINFOKEYW)( | 67 | typedef LSTATUS (APIENTRY *PFN_REGQUERYINFOKEYW)( |
68 | __in HKEY hKey, | 68 | __in HKEY hKey, |
69 | __out LPWSTR lpClass, | 69 | __out_opt LPWSTR lpClass, |
70 | __inout_opt LPDWORD lpcClass, | 70 | __inout_opt LPDWORD lpcClass, |
71 | __reserved LPDWORD lpReserved, | 71 | __reserved LPDWORD lpReserved, |
72 | __out_opt LPDWORD lpcSubKeys, | 72 | __out_opt LPDWORD lpcSubKeys, |
@@ -170,7 +170,7 @@ HRESULT DAPI RegReadString( | |||
170 | HRESULT DAPI RegReadStringArray( | 170 | HRESULT DAPI RegReadStringArray( |
171 | __in HKEY hk, | 171 | __in HKEY hk, |
172 | __in_z_opt LPCWSTR wzName, | 172 | __in_z_opt LPCWSTR wzName, |
173 | __deref_out_ecount_opt(pcStrings) LPWSTR** prgsczStrings, | 173 | __deref_out_ecount_opt(*pcStrings) LPWSTR** prgsczStrings, |
174 | __out DWORD *pcStrings | 174 | __out DWORD *pcStrings |
175 | ); | 175 | ); |
176 | HRESULT DAPI RegReadVersion( | 176 | HRESULT DAPI RegReadVersion( |
@@ -202,7 +202,7 @@ HRESULT DAPI RegWriteString( | |||
202 | HRESULT DAPI RegWriteStringArray( | 202 | HRESULT DAPI RegWriteStringArray( |
203 | __in HKEY hk, | 203 | __in HKEY hk, |
204 | __in_z_opt LPCWSTR wzName, | 204 | __in_z_opt LPCWSTR wzName, |
205 | __in_ecount(cValues) LPWSTR *rgwzStrings, | 205 | __in_ecount(cStrings) LPWSTR *rgwzStrings, |
206 | __in DWORD cStrings | 206 | __in DWORD cStrings |
207 | ); | 207 | ); |
208 | HRESULT DAPI RegWriteStringFormatted( | 208 | HRESULT DAPI RegWriteStringFormatted( |