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

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

parent d05757d2
......@@ -401,10 +401,10 @@ static LRESULT OSS_MidiExit(void)
static void MIDI_NotifyClient(UINT wDevID, WORD wMsg,
DWORD_PTR dwParam1, DWORD_PTR dwParam2)
{
DWORD dwCallBack;
DWORD_PTR dwCallBack;
UINT uFlags;
HANDLE hDev;
DWORD dwInstance;
DWORD_PTR dwInstance;
TRACE("wDevID = %04X 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