dinput: Return correct errors from HID joystick IDirectInputDevice8_SetProperty.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b4dfa8ff7b
commit
78f04ca082
|
@ -582,6 +582,18 @@ static HRESULT WINAPI hid_joystick_SetProperty( IDirectInputDevice8W *iface, con
|
|||
if (header->dwSize != sizeof(DIPROPRANGE)) return DIERR_INVALIDPARAM;
|
||||
enum_value_objects( impl, header, DIDFT_AXIS, set_property_prop_range, (void *)header );
|
||||
return DI_OK;
|
||||
case (DWORD_PTR)DIPROP_FFLOAD:
|
||||
case (DWORD_PTR)DIPROP_GRANULARITY:
|
||||
case (DWORD_PTR)DIPROP_VIDPID:
|
||||
if (header->dwSize != sizeof(DIPROPDWORD)) return DIERR_INVALIDPARAM;
|
||||
return DIERR_READONLY;
|
||||
case (DWORD_PTR)DIPROP_TYPENAME:
|
||||
case (DWORD_PTR)DIPROP_USERNAME:
|
||||
if (header->dwSize != sizeof(DIPROPSTRING)) return DIERR_INVALIDPARAM;
|
||||
return DIERR_READONLY;
|
||||
case (DWORD_PTR)DIPROP_GUIDANDPATH:
|
||||
if (header->dwSize != sizeof(DIPROPGUIDANDPATH)) return DIERR_INVALIDPARAM;
|
||||
return DIERR_READONLY;
|
||||
default:
|
||||
return IDirectInputDevice2WImpl_SetProperty( iface, guid, header );
|
||||
}
|
||||
|
|
|
@ -4337,17 +4337,14 @@ static void test_simple_joystick(void)
|
|||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_VIDPID, NULL );
|
||||
ok( hr == DIERR_INVALIDPARAM, "IDirectInputDevice8_SetProperty returned %#x\n", hr );
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_VIDPID, &prop_string.diph );
|
||||
todo_wine
|
||||
ok( hr == DIERR_INVALIDPARAM, "IDirectInputDevice8_SetProperty returned %#x\n", hr );
|
||||
|
||||
prop_dword.diph.dwHow = DIPH_DEVICE;
|
||||
prop_dword.diph.dwObj = 0;
|
||||
prop_dword.dwData = 0xdeadbeef;
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_VIDPID, &prop_dword.diph );
|
||||
todo_wine
|
||||
ok( hr == DIERR_READONLY, "IDirectInputDevice8_SetProperty DIPROP_VIDPID returned %#x\n", hr );
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_GUIDANDPATH, &prop_guid_path.diph );
|
||||
todo_wine
|
||||
ok( hr == DIERR_READONLY, "IDirectInputDevice8_SetProperty DIPROP_GUIDANDPATH returned %#x\n", hr );
|
||||
|
||||
prop_string.diph.dwHow = DIPH_DEVICE;
|
||||
|
@ -4367,16 +4364,12 @@ static void test_simple_joystick(void)
|
|||
debugstr_w(prop_string.wsz) );
|
||||
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_TYPENAME, &prop_string.diph );
|
||||
todo_wine
|
||||
ok( hr == DIERR_READONLY, "IDirectInputDevice8_SetProperty DIPROP_TYPENAME returned %#x\n", hr );
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_USERNAME, &prop_string.diph );
|
||||
todo_wine
|
||||
ok( hr == DIERR_READONLY, "IDirectInputDevice8_SetProperty DIPROP_USERNAME returned %#x\n", hr );
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_FFLOAD, &prop_dword.diph );
|
||||
todo_wine
|
||||
ok( hr == DIERR_READONLY, "IDirectInputDevice8_SetProperty DIPROP_FFLOAD returned %#x\n", hr );
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_GRANULARITY, &prop_dword.diph );
|
||||
todo_wine
|
||||
ok( hr == DIERR_READONLY, "IDirectInputDevice8_SetProperty DIPROP_GRANULARITY returned %#x\n", hr );
|
||||
|
||||
hr = IDirectInputDevice8_SetProperty( device, DIPROP_JOYSTICKID, &prop_dword.diph );
|
||||
|
|
Loading…
Reference in New Issue