Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a2e7c325
Commit
a2e7c325
authored
Mar 17, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Replace inline static with static inline.
parent
74ab88ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
registry.c
dlls/advapi32/registry.c
+3
-3
No files found.
dlls/advapi32/registry.c
View file @
a2e7c325
...
...
@@ -86,13 +86,13 @@ static const WCHAR * const root_key_names[NB_SPECIAL_ROOT_KEYS] =
/* 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 @@ static HKEY create_special_root_hkey( HANDLE hkey, DWORD access )
}
/* 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
;
...
...
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