https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2154e259e776f89ed2349db5a79b0dff8d9ba511

commit 2154e259e776f89ed2349db5a79b0dff8d9ba511
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Fri Dec 9 18:50:21 2022 +0200
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Wed Jan 4 10:32:28 2023 +0100

    [PSDK] Fix definition of DRVCALLBACK for 64 bit
---
 sdk/include/psdk/mmsystem.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdk/include/psdk/mmsystem.h b/sdk/include/psdk/mmsystem.h
index b3b2347c890..08221ad0a10 100644
--- a/sdk/include/psdk/mmsystem.h
+++ b/sdk/include/psdk/mmsystem.h
@@ -999,7 +999,7 @@ typedef struct DRVCONFIGINFOEX {
 } DRVCONFIGINFOEX,*PDRVCONFIGINFOEX,*LPDRVCONFIGINFOEX;
 
 typedef LRESULT (CALLBACK* DRIVERPROC)(DWORD_PTR,HDRVR,UINT,LPARAM,LPARAM);
-typedef void (CALLBACK DRVCALLBACK)(HDRVR,UINT,DWORD,DWORD,DWORD);
+typedef void (CALLBACK DRVCALLBACK)(HDRVR, UINT, DWORD_PTR, DWORD_PTR, 
DWORD_PTR);
 typedef DRVCALLBACK *LPDRVCALLBACK;
 typedef DRVCALLBACK *PDRVCALLBACK;
 DECLARE_HANDLE(HWAVE);

Reply via email to