advapi32: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Sat Mar 17 05:15:11 CDT 2007


Changelog:
    advapi32: Replace inline static with static inline.

diff -urN a/dlls/advapi32/registry.c b/dlls/advapi32/registry.c
--- a/dlls/advapi32/registry.c	2007-03-13 17:26:09.000000000 +0000
+++ b/dlls/advapi32/registry.c	2007-03-17 09:52:44.000000000 +0000
@@ -86,13 +86,13 @@
 
 
 /* check if value type needs string conversion (Ansi<->Unicode) */
-inline static int is_string( DWORD type )
+static inline int is_string( DWORD type )
 {
     return (type == REG_SZ) || (type == REG_EXPAND_SZ) || (type == REG_MULTI_SZ);
 }
 
 /* check if current version is NT or Win95 */
-inline static int is_version_nt(void)
+static inline int is_version_nt(void)
 {
     return !(GetVersion() & 0x80000000);
 }
@@ -136,7 +136,7 @@
 }
 
 /* map the hkey from special root to normal key if necessary */
-inline static HKEY get_special_root_hkey( HKEY hkey )
+static inline HKEY get_special_root_hkey( HKEY hkey )
 {
     HKEY ret = hkey;
 



More information about the wine-patches mailing list