dmusic: Constify a variable.
This commit is contained in:
parent
82e5990a39
commit
391b1c24a2
|
@ -216,7 +216,7 @@ const char *debugstr_fourcc (DWORD fourcc) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* DMUS_VERSION struct to string conversion for debug messages */
|
/* 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'";
|
if (!version) return "'null'";
|
||||||
return wine_dbg_sprintf ("\'%i,%i,%i,%i\'",
|
return wine_dbg_sprintf ("\'%i,%i,%i,%i\'",
|
||||||
(int)((version->dwVersionMS & 0xFFFF0000) >> 8), (int)(version->dwVersionMS & 0x0000FFFF),
|
(int)((version->dwVersionMS & 0xFFFF0000) >> 8), (int)(version->dwVersionMS & 0x0000FFFF),
|
||||||
|
|
|
@ -305,7 +305,7 @@ extern int even_or_odd (DWORD number);
|
||||||
/* FOURCC to string conversion for debug messages */
|
/* FOURCC to string conversion for debug messages */
|
||||||
extern const char *debugstr_fourcc (DWORD fourcc);
|
extern const char *debugstr_fourcc (DWORD fourcc);
|
||||||
/* DMUS_VERSION struct to string conversion for debug messages */
|
/* 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 */
|
/* returns name of given GUID */
|
||||||
extern const char *debugstr_dmguid (const GUID *id);
|
extern const char *debugstr_dmguid (const GUID *id);
|
||||||
/* returns name of given error code */
|
/* returns name of given error code */
|
||||||
|
|
Loading…
Reference in New Issue