Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
453cb25c
Commit
453cb25c
authored
Mar 20, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Replace inline static with static inline.
parent
a89d5de5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
freetype.c
dlls/gdi32/freetype.c
+3
-3
gdiobj.c
dlls/gdi32/gdiobj.c
+3
-3
region.c
dlls/gdi32/region.c
+1
-1
No files found.
dlls/gdi32/freetype.c
View file @
453cb25c
...
...
@@ -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
;
...
...
@@ -1841,7 +1841,7 @@ inline static HKEY create_fonts_NT_registry_key(void)
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 @@ inline static HKEY create_fonts_9x_registry_key(void)
return
hkey
;
}
inline
static
HKEY
create_config_fonts_registry_key
(
void
)
static
inline
HKEY
create_config_fonts_registry_key
(
void
)
{
HKEY
hkey
=
0
;
...
...
dlls/gdi32/gdiobj.c
View file @
453cb25c
...
...
@@ -528,7 +528,7 @@ static DWORD get_dpi( void )
*
* 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 @@ inline static void inc_ref_count( HGDIOBJ handle )
*
* 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 @@ static int next_large_handle;
*
* 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
;
...
...
dlls/gdi32/region.c
View file @
453cb25c
...
...
@@ -454,7 +454,7 @@ static void REGION_UnionRectWithRegion(const RECT *rect, WINEREGION *rgn);
/***********************************************************************
* 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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment