dmime: Remove resolve_STREAM_SEEK(), it is unused.
This commit is contained in:
parent
dd6e948d84
commit
13b974bdff
|
@ -233,20 +233,6 @@ HRESULT IDirectMusicUtils_IPersistStream_ParseReference (LPPERSISTSTREAM iface,
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
/* translate STREAM_SEEK flag to string */
|
||||
const char *resolve_STREAM_SEEK (DWORD flag) {
|
||||
switch (flag) {
|
||||
case STREAM_SEEK_SET:
|
||||
return wine_dbg_sprintf ("STREAM_SEEK_SET");
|
||||
case STREAM_SEEK_CUR:
|
||||
return wine_dbg_sprintf ("STREAM_SEEK_CUR");
|
||||
case STREAM_SEEK_END:
|
||||
return wine_dbg_sprintf ("STREAM_SEEK_END");
|
||||
default:
|
||||
return wine_dbg_sprintf ("()");
|
||||
}
|
||||
}
|
||||
|
||||
/* FOURCC to string conversion for debug messages */
|
||||
const char *debugstr_fourcc (DWORD fourcc) {
|
||||
if (!fourcc) return "'null'";
|
||||
|
|
|
@ -64,8 +64,6 @@ typedef struct {
|
|||
extern int even_or_odd (DWORD number);
|
||||
/* check whether chunkID is valid dmobject form chunk */
|
||||
extern BOOL IS_VALID_DMFORM (FOURCC chunkID);
|
||||
/* translate STREAM_SEEK flag to string */
|
||||
extern const char *resolve_STREAM_SEEK (DWORD flag);
|
||||
/* FOURCC to string conversion for debug messages */
|
||||
extern const char *debugstr_fourcc (DWORD fourcc);
|
||||
/* DMUS_VERSION struct to string conversion for debug messages */
|
||||
|
|
Loading…
Reference in New Issue