dsound: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Mar 19 14:46:38 CDT 2007


Changelog:
    dsound: Replace inline static with static inline.

diff -urN a/dlls/dsound/dsound_main.c b/dlls/dsound/dsound_main.c
--- a/dlls/dsound/dsound_main.c	2006-11-13 17:34:34.000000000 +0000
+++ b/dlls/dsound/dsound_main.c	2007-03-19 19:37:32.000000000 +0000
@@ -115,7 +115,7 @@
  * 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 )) return 0;



More information about the wine-patches mailing list