Commit 3a5c79fa authored by Jörg Höhle's avatar Jörg Höhle Committed by Alexandre Julliard

wineoss: Fix 64-bits incompatibilities.

parent e7b07680
...@@ -399,14 +399,14 @@ static LRESULT OSS_MidiExit(void) ...@@ -399,14 +399,14 @@ static LRESULT OSS_MidiExit(void)
* MIDI_NotifyClient [internal] * MIDI_NotifyClient [internal]
*/ */
static void MIDI_NotifyClient(UINT wDevID, WORD wMsg, static void MIDI_NotifyClient(UINT wDevID, WORD wMsg,
DWORD dwParam1, DWORD dwParam2) DWORD_PTR dwParam1, DWORD_PTR dwParam2)
{ {
DWORD dwCallBack; DWORD dwCallBack;
UINT uFlags; UINT uFlags;
HANDLE hDev; HANDLE hDev;
DWORD dwInstance; DWORD dwInstance;
TRACE("wDevID = %04X wMsg = %d dwParm1 = %04X dwParam2 = %04X\n", TRACE("wDevID = %04X wMsg = %d dwParm1 = %04lX dwParam2 = %04lX\n",
wDevID, wMsg, dwParam1, dwParam2); wDevID, wMsg, dwParam1, dwParam2);
switch (wMsg) { switch (wMsg) {
......
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