winmm: Check param in joyConfigChanged.

This commit is contained in:
Christian Costa 2008-12-31 17:29:17 +01:00 committed by Alexandre Julliard
parent 3b5c75d991
commit 6d8fdefb4a
1 changed files with 4 additions and 0 deletions

View File

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