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
efc988e1
Commit
efc988e1
authored
Mar 22, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Replace inline static with static inline.
parent
7169718d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
msipriv.h
dlls/msi/msipriv.h
+3
-3
No files found.
dlls/msi/msipriv.h
View file @
efc988e1
...
...
@@ -825,7 +825,7 @@ static inline BOOL msi_free( void *mem )
return
HeapFree
(
GetProcessHeap
(),
0
,
mem
);
}
inline
static
char
*
strdupWtoA
(
LPCWSTR
str
)
static
inline
char
*
strdupWtoA
(
LPCWSTR
str
)
{
LPSTR
ret
=
NULL
;
DWORD
len
;
...
...
@@ -838,7 +838,7 @@ inline static char *strdupWtoA( LPCWSTR str )
return
ret
;
}
inline
static
LPWSTR
strdupAtoW
(
LPCSTR
str
)
static
inline
LPWSTR
strdupAtoW
(
LPCSTR
str
)
{
LPWSTR
ret
=
NULL
;
DWORD
len
;
...
...
@@ -851,7 +851,7 @@ inline static LPWSTR strdupAtoW( LPCSTR str )
return
ret
;
}
inline
static
LPWSTR
strdupW
(
LPCWSTR
src
)
static
inline
LPWSTR
strdupW
(
LPCWSTR
src
)
{
LPWSTR
dest
;
if
(
!
src
)
return
NULL
;
...
...
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