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
d865fc9f
Commit
d865fc9f
authored
Apr 28, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 30, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dswave: Constify a variable.
parent
79d1d77f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dswave_main.c
dlls/dswave/dswave_main.c
+1
-1
dswave_private.h
dlls/dswave/dswave_private.h
+1
-1
No files found.
dlls/dswave/dswave_main.c
View file @
d865fc9f
...
...
@@ -144,7 +144,7 @@ const char *debugstr_fourcc (DWORD fourcc) {
}
/* DMUS_VERSION struct to string conversion for debug messages */
const
char
*
debugstr_dmversion
(
LPDMUS_VERSION
version
)
{
const
char
*
debugstr_dmversion
(
const
DMUS_VERSION
*
version
)
{
if
(
!
version
)
return
"'null'"
;
return
wine_dbg_sprintf
(
"
\'
%i,%i,%i,%i
\'
"
,
(
int
)((
version
->
dwVersionMS
&
0xFFFF0000
)
>>
8
),
(
int
)(
version
->
dwVersionMS
&
0x0000FFFF
),
...
...
dlls/dswave/dswave_private.h
View file @
d865fc9f
...
...
@@ -111,7 +111,7 @@ extern int even_or_odd (DWORD number);
/* FOURCC to string conversion for debug messages */
extern
const
char
*
debugstr_fourcc
(
DWORD
fourcc
);
/* DMUS_VERSION struct to string conversion for debug messages */
extern
const
char
*
debugstr_dmversion
(
LPDMUS_VERSION
version
);
extern
const
char
*
debugstr_dmversion
(
const
DMUS_VERSION
*
version
);
/* returns name of given GUID */
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
);
/* returns name of given error code */
...
...
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