[PSDK] Fix definition of DRVCALLBACK for 64 bit

This commit is contained in:
Timo Kreuzer 2022-12-09 18:50:21 +02:00
parent 437f2b1b0e
commit 2154e259e7

View file

@ -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);