Commit 6d8fdefb authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

winmm: Check param in joyConfigChanged.

parent 3b5c75d9
......@@ -126,6 +126,10 @@ static void CALLBACK JOY_Timer(HWND hWnd, UINT wMsg, UINT_PTR wTimer, DWORD dwTi
MMRESULT WINAPI joyConfigChanged(DWORD flags)
{
FIXME("(%x) - stub\n", flags);
if (flags)
return JOYERR_PARMS;
return JOYERR_NOERROR;
}
......
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