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
3c78748c
Commit
3c78748c
authored
Mar 23, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Replace inline static with static inline.
parent
57746f95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
driver.c
dlls/winmm/driver.c
+1
-1
mci.c
dlls/winmm/mci.c
+1
-1
No files found.
dlls/winmm/driver.c
View file @
3c78748c
...
...
@@ -131,7 +131,7 @@ LPWINE_DRIVER DRIVER_FindFromHDrvr(HDRVR hDrvr)
/**************************************************************************
* DRIVER_SendMessage [internal]
*/
inline
static
LRESULT
DRIVER_SendMessage
(
LPWINE_DRIVER
lpDrv
,
UINT
msg
,
static
inline
LRESULT
DRIVER_SendMessage
(
LPWINE_DRIVER
lpDrv
,
UINT
msg
,
LPARAM
lParam1
,
LPARAM
lParam2
)
{
LRESULT
ret
=
0
;
...
...
dlls/winmm/mci.c
View file @
3c78748c
...
...
@@ -85,7 +85,7 @@ static const WCHAR wszOpen [] = {'o','p','e','n',0};
static
const
WCHAR
wszSystemIni
[]
=
{
's'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
'.'
,
'i'
,
'n'
,
'i'
,
0
};
/* dup a string and uppercase it */
inline
static
LPWSTR
str_dup_upper
(
LPCWSTR
str
)
static
inline
LPWSTR
str_dup_upper
(
LPCWSTR
str
)
{
INT
len
=
(
strlenW
(
str
)
+
1
)
*
sizeof
(
WCHAR
);
LPWSTR
p
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
);
...
...
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