https://git.reactos.org/?p=reactos.git;a=commitdiff;h=122423238a2c2c068cd6169b6f1d294f2372ae9a

commit 122423238a2c2c068cd6169b6f1d294f2372ae9a
Author:     Mark Jansen <[email protected]>
AuthorDate: Sat Oct 15 12:20:50 2022 +0200
Commit:     Mark Jansen <[email protected]>
CommitDate: Wed Oct 19 19:39:29 2022 +0200

    [PSDK] Add arguments for SearchPathW
---
 sdk/include/psdk/winbase.h | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/sdk/include/psdk/winbase.h b/sdk/include/psdk/winbase.h
index e54e9788303..fea79d7dc83 100644
--- a/sdk/include/psdk/winbase.h
+++ b/sdk/include/psdk/winbase.h
@@ -3058,7 +3058,14 @@ SearchPathA(
   _Out_writes_to_opt_(nBufferLength, return + 1) LPSTR lpBuffer,
   _Out_opt_ LPSTR *lpFilePart);
 
-DWORD WINAPI SearchPathW(LPCWSTR,LPCWSTR,LPCWSTR,DWORD,LPWSTR,LPWSTR*);
+DWORD WINAPI
+SearchPathW(
+    _In_opt_ LPCWSTR lpPath,
+    _In_ LPCWSTR lpFileName,
+    _In_opt_ LPCWSTR lpExtension,
+    _In_ DWORD nBufferLength,
+    _Out_writes_to_opt_(nBufferLength, return +1) LPWSTR lpBuffer,
+    _Out_opt_ LPWSTR *lpFilePart);
 BOOL WINAPI SetAclInformation(PACL,PVOID,DWORD,ACL_INFORMATION_CLASS);
 BOOL WINAPI SetCommBreak(_In_ HANDLE);
 

Reply via email to