Module: wine Branch: master Commit: 3c78748cc16655f05691f315e0d88e496ca5458c URL: http://source.winehq.org/git/wine.git/?a=commit;h=3c78748cc16655f05691f315e0...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Fri Mar 23 15:10:05 2007 +0000
winmm: Replace inline static with static inline.
---
dlls/winmm/driver.c | 2 +- dlls/winmm/mci.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winmm/driver.c b/dlls/winmm/driver.c index d200b57..cf1c0ab 100644 --- a/dlls/winmm/driver.c +++ b/dlls/winmm/driver.c @@ -131,7 +131,7 @@ LPWINE_DRIVER DRIVER_FindFromHDrvr(HDRVR hDrvr) /************************************************************************** * DRIVER_SendMessage [internal] */ -inline static LRESULT DRIVER_SendMessage(LPWINE_DRIVER lpDrv, UINT msg, +static inline LRESULT DRIVER_SendMessage(LPWINE_DRIVER lpDrv, UINT msg, LPARAM lParam1, LPARAM lParam2) { LRESULT ret = 0; diff --git a/dlls/winmm/mci.c b/dlls/winmm/mci.c index 4eb4a72..5ca5c97 100644 --- a/dlls/winmm/mci.c +++ b/dlls/winmm/mci.c @@ -85,7 +85,7 @@ static const WCHAR wszOpen [] = {'o','p','e','n',0}; static const WCHAR wszSystemIni[] = {'s','y','s','t','e','m','.','i','n','i',0};
/* dup a string and uppercase it */ -inline static LPWSTR str_dup_upper( LPCWSTR str ) +static inline LPWSTR str_dup_upper( LPCWSTR str ) { INT len = (strlenW(str) + 1) * sizeof(WCHAR); LPWSTR p = HeapAlloc( GetProcessHeap(), 0, len );