Module: wine Branch: master Commit: 92b6c23790ae87be5a000f2e7be219f3d7ee200f URL: https://gitlab.winehq.org/wine/wine/-/commit/92b6c23790ae87be5a000f2e7be219f...
Author: Francois Gouget fgouget@free.fr Date: Thu Aug 25 12:29:25 2022 +0200
dinput: Remove WINAPI on static functions where not needed.
---
dlls/dinput/device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/dinput/device.c b/dlls/dinput/device.c index f0220252279..b85d97d1b95 100644 --- a/dlls/dinput/device.c +++ b/dlls/dinput/device.c @@ -1346,8 +1346,8 @@ static void reset_device_state( IDirectInputDevice8W *iface ) impl->vtbl->enum_objects( iface, &filter, DIDFT_AXIS | DIDFT_POV, reset_object_value, impl ); }
-static HRESULT WINAPI dinput_device_set_property( IDirectInputDevice8W *iface, const GUID *guid, - const DIPROPHEADER *header ) +static HRESULT dinput_device_set_property( IDirectInputDevice8W *iface, const GUID *guid, + const DIPROPHEADER *header ) { struct set_object_property_params params = {.iface = iface, .header = header, .property = LOWORD( guid )}; struct dinput_device *impl = impl_from_IDirectInputDevice8W( iface );