dmband: Move debugstr_fourcc() to dmobject.h.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5f0b5d3505
commit
bc3d4b5d76
|
@ -34,13 +34,6 @@ WINE_DECLARE_DEBUG_CHANNEL(dmfile);
|
|||
/* RIFF format parsing */
|
||||
#define CHUNK_HDR_SIZE (sizeof(FOURCC) + sizeof(DWORD))
|
||||
|
||||
static inline const char *debugstr_fourcc(DWORD fourcc)
|
||||
{
|
||||
if (!fourcc) return "''";
|
||||
return wine_dbg_sprintf("'%c%c%c%c'", (char)(fourcc), (char)(fourcc >> 8),
|
||||
(char)(fourcc >> 16), (char)(fourcc >> 24));
|
||||
}
|
||||
|
||||
const char *debugstr_chunk(const struct chunk_entry *chunk)
|
||||
{
|
||||
const char *type = "";
|
||||
|
|
|
@ -60,8 +60,6 @@ static inline HRESULT stream_reset_chunk_start(IStream *stream, const struct chu
|
|||
return IStream_Seek(stream, offset, STREAM_SEEK_SET, NULL);
|
||||
}
|
||||
|
||||
const char *debugstr_chunk(const struct chunk_entry *chunk) DECLSPEC_HIDDEN;
|
||||
|
||||
|
||||
/* IDirectMusicObject base object */
|
||||
struct dmobject {
|
||||
|
@ -106,3 +104,13 @@ HRESULT WINAPI unimpl_IPersistStream_Save(IPersistStream *iface, IStream *stream
|
|||
BOOL clear_dirty) DECLSPEC_HIDDEN;
|
||||
HRESULT WINAPI unimpl_IPersistStream_GetSizeMax(IPersistStream *iface,
|
||||
ULARGE_INTEGER *size) DECLSPEC_HIDDEN;
|
||||
|
||||
/* Debugging helpers */
|
||||
const char *debugstr_chunk(const struct chunk_entry *chunk) DECLSPEC_HIDDEN;
|
||||
|
||||
static inline const char *debugstr_fourcc(DWORD fourcc)
|
||||
{
|
||||
if (!fourcc) return "''";
|
||||
return wine_dbg_sprintf("'%c%c%c%c'", (char)(fourcc), (char)(fourcc >> 8),
|
||||
(char)(fourcc >> 16), (char)(fourcc >> 24));
|
||||
}
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
#include "dmusics.h"
|
||||
|
||||
#include "dmutils.h"
|
||||
#include "dmobject.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
|
||||
WINE_DECLARE_DEBUG_CHANNEL(dmfile);
|
||||
|
@ -296,14 +297,6 @@ HRESULT IDirectMusicUtils_IPersistStream_ParseReference (LPPERSISTSTREAM iface,
|
|||
return hr;
|
||||
}
|
||||
|
||||
/* FOURCC to string conversion for debug messages */
|
||||
const char *debugstr_fourcc (DWORD fourcc) {
|
||||
if (!fourcc) return "'null'";
|
||||
return wine_dbg_sprintf ("\'%c%c%c%c\'",
|
||||
(char)(fourcc), (char)(fourcc >> 8),
|
||||
(char)(fourcc >> 16), (char)(fourcc >> 24));
|
||||
}
|
||||
|
||||
/* returns name of given GUID */
|
||||
const char *debugstr_dmguid (const GUID *id) {
|
||||
static const guid_info guids[] = {
|
||||
|
|
|
@ -52,8 +52,6 @@ typedef struct {
|
|||
#define FE(x) { x, #x }
|
||||
#define GE(x) { &x, #x }
|
||||
|
||||
/* FOURCC to string conversion for debug messages */
|
||||
extern const char *debugstr_fourcc (DWORD fourcc) DECLSPEC_HIDDEN;
|
||||
/* returns name of given GUID */
|
||||
extern const char *debugstr_dmguid (const GUID *id) DECLSPEC_HIDDEN;
|
||||
|
||||
|
|
Loading…
Reference in New Issue