Commit d05757d2 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

winecoreaudio: Fix variable types so pointer is not truncated on 64bit.

parent 72452b10
...@@ -225,10 +225,10 @@ LONG CoreAudio_MIDIRelease(void) ...@@ -225,10 +225,10 @@ LONG CoreAudio_MIDIRelease(void)
*/ */
static void MIDI_NotifyClient(UINT wDevID, WORD wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2) static void MIDI_NotifyClient(UINT wDevID, WORD wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
{ {
DWORD dwCallBack; DWORD_PTR dwCallBack;
UINT uFlags; UINT uFlags;
HANDLE hDev; HANDLE hDev;
DWORD dwInstance; DWORD_PTR dwInstance;
TRACE("wDevID=%d wMsg=%d dwParm1=%04lX dwParam2=%04lX\n", wDevID, wMsg, dwParam1, dwParam2); TRACE("wDevID=%d wMsg=%d dwParm1=%04lX dwParam2=%04lX\n", wDevID, wMsg, dwParam1, dwParam2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment