Commit 453cb25c authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

gdi32: Replace inline static with static inline.

parent a89d5de5
...@@ -1832,7 +1832,7 @@ static const struct nls_update_font_list ...@@ -1832,7 +1832,7 @@ static const struct nls_update_font_list
} }
}; };
inline static HKEY create_fonts_NT_registry_key(void) static inline HKEY create_fonts_NT_registry_key(void)
{ {
HKEY hkey = 0; HKEY hkey = 0;
...@@ -1841,7 +1841,7 @@ inline static HKEY create_fonts_NT_registry_key(void) ...@@ -1841,7 +1841,7 @@ inline static HKEY create_fonts_NT_registry_key(void)
return hkey; return hkey;
} }
inline static HKEY create_fonts_9x_registry_key(void) static inline HKEY create_fonts_9x_registry_key(void)
{ {
HKEY hkey = 0; HKEY hkey = 0;
...@@ -1850,7 +1850,7 @@ inline static HKEY create_fonts_9x_registry_key(void) ...@@ -1850,7 +1850,7 @@ inline static HKEY create_fonts_9x_registry_key(void)
return hkey; return hkey;
} }
inline static HKEY create_config_fonts_registry_key(void) static inline HKEY create_config_fonts_registry_key(void)
{ {
HKEY hkey = 0; HKEY hkey = 0;
......
...@@ -528,7 +528,7 @@ static DWORD get_dpi( void ) ...@@ -528,7 +528,7 @@ static DWORD get_dpi( void )
* *
* Increment the reference count of a GDI object. * 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; GDIOBJHDR *header;
...@@ -545,7 +545,7 @@ inline static void inc_ref_count( HGDIOBJ handle ) ...@@ -545,7 +545,7 @@ inline static void inc_ref_count( HGDIOBJ handle )
* *
* Decrement the reference count of a GDI object. * 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; GDIOBJHDR *header;
...@@ -638,7 +638,7 @@ static int next_large_handle; ...@@ -638,7 +638,7 @@ static int next_large_handle;
* *
* Allocate a GDI handle from the large heap. Helper for GDI_AllocObject * 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; int i;
GDIOBJHDR *obj; GDIOBJHDR *obj;
......
...@@ -454,7 +454,7 @@ static void REGION_UnionRectWithRegion(const RECT *rect, WINEREGION *rgn); ...@@ -454,7 +454,7 @@ static void REGION_UnionRectWithRegion(const RECT *rect, WINEREGION *rgn);
/*********************************************************************** /***********************************************************************
* get_region_type * 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) switch(obj->rgn->numRects)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment