Commit ab683fee authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

dmusic: Constify a variable.

parent b2e2793e
...@@ -187,7 +187,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) ...@@ -187,7 +187,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
* *
*/ */
/* dwPatch from MIDILOCALE */ /* dwPatch from MIDILOCALE */
DWORD MIDILOCALE2Patch (LPMIDILOCALE pLocale) { DWORD MIDILOCALE2Patch (const MIDILOCALE *pLocale) {
DWORD dwPatch = 0; DWORD dwPatch = 0;
if (!pLocale) return 0; if (!pLocale) return 0;
dwPatch |= (pLocale->ulBank & F_INSTRUMENT_DRUMS); /* set drum bit */ dwPatch |= (pLocale->ulBank & F_INSTRUMENT_DRUMS); /* set drum bit */
......
...@@ -266,7 +266,7 @@ typedef struct { ...@@ -266,7 +266,7 @@ typedef struct {
#define GE(x) { &x, #x } #define GE(x) { &x, #x }
/* dwPatch from MIDILOCALE */ /* dwPatch from MIDILOCALE */
extern DWORD MIDILOCALE2Patch (LPMIDILOCALE pLocale); extern DWORD MIDILOCALE2Patch (const MIDILOCALE *pLocale);
/* MIDILOCALE from dwPatch */ /* MIDILOCALE from dwPatch */
extern void Patch2MIDILOCALE (DWORD dwPatch, LPMIDILOCALE pLocale); extern void Patch2MIDILOCALE (DWORD dwPatch, LPMIDILOCALE pLocale);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment