gdi32: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Mar 19 14:47:17 CDT 2007


Changelog:
    gdi32: Replace inline static with static inline.

diff -urN a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
--- a/dlls/gdi32/freetype.c	2007-03-19 17:26:45.000000000 +0000
+++ b/dlls/gdi32/freetype.c	2007-03-19 19:06:26.000000000 +0000
@@ -1832,7 +1832,7 @@
     }
 };
 
-inline static HKEY create_fonts_NT_registry_key(void)
+static inline HKEY create_fonts_NT_registry_key(void)
 {
     HKEY hkey = 0;
 
@@ -1841,7 +1841,7 @@
     return hkey;
 }
 
-inline static HKEY create_fonts_9x_registry_key(void)
+static inline HKEY create_fonts_9x_registry_key(void)
 {
     HKEY hkey = 0;
 
@@ -1850,7 +1850,7 @@
     return hkey;
 }
 
-inline static HKEY create_config_fonts_registry_key(void)
+static inline HKEY create_config_fonts_registry_key(void)
 {
     HKEY hkey = 0;
 
diff -urN a/dlls/gdi32/gdiobj.c b/dlls/gdi32/gdiobj.c
--- a/dlls/gdi32/gdiobj.c	2006-12-20 17:04:46.000000000 +0000
+++ b/dlls/gdi32/gdiobj.c	2007-03-19 19:06:26.000000000 +0000
@@ -528,7 +528,7 @@
  *
  * Increment the reference count of a GDI object.
  */
-inline static void inc_ref_count( HGDIOBJ handle )
+static inline void inc_ref_count( HGDIOBJ handle )
 {
     GDIOBJHDR *header;
 
@@ -545,7 +545,7 @@
  *
  * Decrement the reference count of a GDI object.
  */
-inline static void dec_ref_count( HGDIOBJ handle )
+static inline void dec_ref_count( HGDIOBJ handle )
 {
     GDIOBJHDR *header;
 
@@ -638,7 +638,7 @@
  *
  * Allocate a GDI handle from the large heap. Helper for GDI_AllocObject
  */
-inline static GDIOBJHDR *alloc_large_heap( WORD size, HGDIOBJ *handle )
+static inline GDIOBJHDR *alloc_large_heap( WORD size, HGDIOBJ *handle )
 {
     int i;
     GDIOBJHDR *obj;
diff -urN a/dlls/gdi32/region.c b/dlls/gdi32/region.c
--- a/dlls/gdi32/region.c	2006-11-17 20:11:46.000000000 +0000
+++ b/dlls/gdi32/region.c	2007-03-19 19:06:27.000000000 +0000
@@ -454,7 +454,7 @@
 /***********************************************************************
  *            get_region_type
  */
-inline static INT get_region_type( const RGNOBJ *obj )
+static inline INT get_region_type( const RGNOBJ *obj )
 {
     switch(obj->rgn->numRects)
     {



More information about the wine-patches mailing list