Module: wine Branch: master Commit: 1b99f38bf3748f49600eceb4bb7b337dfc4af0e6 URL: https://gitlab.winehq.org/wine/wine/-/commit/1b99f38bf3748f49600eceb4bb7b337...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Sat Jul 29 18:16:28 2023 +1000
dinput: Remove DECLSPEC_HIDDEN usage.
---
dlls/dinput/dinput_private.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/dinput/dinput_private.h b/dlls/dinput/dinput_private.h index 944d12b860f..0609b816b3b 100644 --- a/dlls/dinput/dinput_private.h +++ b/dlls/dinput/dinput_private.h @@ -44,8 +44,8 @@ struct dinput struct list device_players; /* device instance guid to player name */ };
-extern const IDirectInput7AVtbl dinput7_a_vtbl DECLSPEC_HIDDEN; -extern const IDirectInput8AVtbl dinput8_a_vtbl DECLSPEC_HIDDEN; +extern const IDirectInput7AVtbl dinput7_a_vtbl; +extern const IDirectInput8AVtbl dinput8_a_vtbl;
extern void dinput_internal_addref( struct dinput *dinput ); extern void dinput_internal_release( struct dinput *dinput ); @@ -75,12 +75,12 @@ extern void dinput_mouse_rawinput_hook( IDirectInputDevice8W *iface, WPARAM wpar extern void dinput_keyboard_rawinput_hook( IDirectInputDevice8W *iface, WPARAM wparam, LPARAM lparam, RAWINPUT *raw );
-extern void check_dinput_events(void) DECLSPEC_HIDDEN; +extern void check_dinput_events(void);
-extern HRESULT _configure_devices(IDirectInput8W *iface, LPDICONFIGUREDEVICESCALLBACK lpdiCallback, LPDICONFIGUREDEVICESPARAMSW lpdiCDParams, DWORD dwFlags, LPVOID pvRefData) DECLSPEC_HIDDEN; +extern HRESULT _configure_devices(IDirectInput8W *iface, LPDICONFIGUREDEVICESCALLBACK lpdiCallback, LPDICONFIGUREDEVICESPARAMSW lpdiCDParams, DWORD dwFlags, LPVOID pvRefData);
-extern WCHAR* get_mapping_path(const WCHAR *device, const WCHAR *username) DECLSPEC_HIDDEN; -extern DWORD get_device_type(DWORD version, BOOL is_joystick) DECLSPEC_HIDDEN; +extern WCHAR* get_mapping_path(const WCHAR *device, const WCHAR *username); +extern DWORD get_device_type(DWORD version, BOOL is_joystick);
#define IS_DIPROP(x) (((ULONG_PTR)(x) >> 16) == 0)