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
0810a923
Commit
0810a923
authored
Mar 23, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Replace inline static with static inline.
parent
7c6ef46c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
clist.c
dlls/shlwapi/clist.c
+1
-1
string.c
dlls/shlwapi/string.c
+2
-2
No files found.
dlls/shlwapi/clist.c
View file @
0810a923
...
@@ -49,7 +49,7 @@ HRESULT WINAPI SHAddDataBlock(LPSHLWAPI_CLIST*,LPCSHLWAPI_CLIST);
...
@@ -49,7 +49,7 @@ HRESULT WINAPI SHAddDataBlock(LPSHLWAPI_CLIST*,LPCSHLWAPI_CLIST);
*
*
* Internal helper: move a DataBlock pointer to the next item.
* Internal helper: move a DataBlock pointer to the next item.
*/
*/
inline
static
LPSHLWAPI_CLIST
NextItem
(
LPSHLWAPI_CLIST
lpList
)
static
inline
LPSHLWAPI_CLIST
NextItem
(
LPSHLWAPI_CLIST
lpList
)
{
{
char
*
address
=
(
char
*
)
lpList
;
char
*
address
=
(
char
*
)
lpList
;
address
+=
lpList
->
ulSize
;
address
+=
lpList
->
ulSize
;
...
...
dlls/shlwapi/string.c
View file @
0810a923
...
@@ -1958,7 +1958,7 @@ HRESULT WINAPI SHStrDupW(LPCWSTR src, LPWSTR * dest)
...
@@ -1958,7 +1958,7 @@ HRESULT WINAPI SHStrDupW(LPCWSTR src, LPWSTR * dest)
*
*
* Internal helper for SHLWAPI_WriteTimeClass.
* Internal helper for SHLWAPI_WriteTimeClass.
*/
*/
inline
static
LPWSTR
SHLWAPI_WriteReverseNum
(
LPWSTR
lpszOut
,
DWORD
dwNum
)
static
inline
LPWSTR
SHLWAPI_WriteReverseNum
(
LPWSTR
lpszOut
,
DWORD
dwNum
)
{
{
*
lpszOut
--
=
'\0'
;
*
lpszOut
--
=
'\0'
;
...
@@ -1978,7 +1978,7 @@ inline static LPWSTR SHLWAPI_WriteReverseNum(LPWSTR lpszOut, DWORD dwNum)
...
@@ -1978,7 +1978,7 @@ inline static LPWSTR SHLWAPI_WriteReverseNum(LPWSTR lpszOut, DWORD dwNum)
*
*
* Internal helper for SHLWAPI_WriteTimeClass.
* Internal helper for SHLWAPI_WriteTimeClass.
*/
*/
inline
static
int
SHLWAPI_FormatSignificant
(
LPWSTR
lpszNum
,
int
dwDigits
)
static
inline
int
SHLWAPI_FormatSignificant
(
LPWSTR
lpszNum
,
int
dwDigits
)
{
{
/* Zero non significant digits, return remaining significant digits */
/* Zero non significant digits, return remaining significant digits */
while
(
*
lpszNum
)
while
(
*
lpszNum
)
...
...
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