Module: wine Branch: master Commit: 08e1481d8ecc25062719d78567149304ba0fca94 URL: http://source.winehq.org/git/wine.git/?a=commit;h=08e1481d8ecc25062719d78567... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Tue Mar 20 17:42:27 2007 +0000 dinput: Replace inline static with static inline. --- dlls/dinput/joystick_linux.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/dinput/joystick_linux.c b/dlls/dinput/joystick_linux.c index 2ed761c..bc4ef5b 100644 --- a/dlls/dinput/joystick_linux.c +++ b/dlls/dinput/joystick_linux.c @@ -281,7 +281,7 @@ static BOOL joydev_enum_deviceW(DWORD dwDevType, DWORD dwFlags, LPDIDEVICEINSTAN * Get a config key from either the app-specific or the default config */ -inline static DWORD get_config_key( HKEY defkey, HKEY appkey, const char *name, +static inline DWORD get_config_key( HKEY defkey, HKEY appkey, const char *name, char *buffer, DWORD size ) { if (appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE)buffer, &size ))