winmm: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Fri Mar 23 10:10:05 CDT 2007


Changelog:
    winmm: Replace inline static with static inline.

diff -urN a/dlls/winmm/driver.c b/dlls/winmm/driver.c
--- a/dlls/winmm/driver.c	2006-11-09 12:11:08.000000000 +0000
+++ b/dlls/winmm/driver.c	2007-03-23 13:28:11.000000000 +0000
@@ -131,7 +131,7 @@
 /**************************************************************************
  *				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 -urN a/dlls/winmm/mci.c b/dlls/winmm/mci.c
--- a/dlls/winmm/mci.c	2007-01-08 12:37:19.000000000 +0000
+++ b/dlls/winmm/mci.c	2007-03-23 13:28:19.000000000 +0000
@@ -85,7 +85,7 @@
 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 );



More information about the wine-patches mailing list