[PSDK] Add some argument names

This commit is contained in:
Mark Jansen 2020-09-06 17:50:29 +02:00
parent 7ed0f25b64
commit a7c1f9a014
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
2 changed files with 9 additions and 9 deletions

View file

@ -885,14 +885,14 @@ PathCreateFromUrlA(
HRESULT
WINAPI
PathCreateFromUrlW(
_In_ LPCWSTR,
_Out_writes_to_(*pcchPath, *pcchPath) LPWSTR,
_In_ LPCWSTR pszUrl,
_Out_writes_to_(*pcchPath, *pcchPath) LPWSTR pszPath,
_Inout_ LPDWORD pcchPath,
DWORD);
DWORD dwFlags);
#define PathCreateFromUrl WINELIB_NAME_AW(PathCreateFromUrl)
HRESULT WINAPI PathCreateFromUrlAlloc(_In_ LPCWSTR, _Outptr_ LPWSTR*, DWORD);
HRESULT WINAPI PathCreateFromUrlAlloc(_In_ LPCWSTR pszUrl, _Outptr_ LPWSTR* pszPath, DWORD dwReserved);
BOOL WINAPI PathFileExistsA(_In_ LPCSTR);
BOOL WINAPI PathFileExistsW(_In_ LPCWSTR);