mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 13:09:57 +00:00
33041701dc
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
75 lines
2.9 KiB
C
75 lines
2.9 KiB
C
/* Debug and Helper Functions
|
|
*
|
|
* Copyright (C) 2004 Rok Mandeljc
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
|
|
#include "dmloader_private.h"
|
|
|
|
/* figures out whether given FOURCC is valid DirectMusic form ID */
|
|
BOOL IS_VALID_DMFORM (FOURCC chunkID) {
|
|
if ((chunkID == DMUS_FOURCC_AUDIOPATH_FORM) || (chunkID == DMUS_FOURCC_BAND_FORM) || (chunkID == DMUS_FOURCC_CHORDMAP_FORM)
|
|
|| (chunkID == DMUS_FOURCC_CONTAINER_FORM) || (chunkID == FOURCC_DLS) || (chunkID == DMUS_FOURCC_SCRIPT_FORM)
|
|
|| (chunkID == DMUS_FOURCC_SEGMENT_FORM) || (chunkID == DMUS_FOURCC_STYLE_FORM) || (chunkID == DMUS_FOURCC_TOOLGRAPH_FORM)
|
|
|| (chunkID == DMUS_FOURCC_TRACK_FORM) || (chunkID == mmioFOURCC('W','A','V','E'))) return TRUE;
|
|
else return FALSE;
|
|
}
|
|
|
|
/* 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 ("()");
|
|
}
|
|
}
|
|
|
|
const char *debugstr_DMUS_IO_CONTAINER_HEADER (LPDMUS_IO_CONTAINER_HEADER pHeader) {
|
|
if (pHeader) {
|
|
char buffer[1024], *ptr = buffer;
|
|
|
|
ptr += sprintf(ptr, "DMUS_IO_CONTAINER_HEADER (%p):", pHeader);
|
|
ptr += sprintf(ptr, "\n - dwFlags = %#lx%s", pHeader->dwFlags,
|
|
pHeader->dwFlags & DMUS_CONTAINER_NOLOADS ? " (DMUS_CONTAINER_NOLOADS)" : "");
|
|
|
|
return wine_dbg_sprintf("%s", buffer);
|
|
} else {
|
|
return wine_dbg_sprintf("(NULL)");
|
|
}
|
|
}
|
|
|
|
const char *debugstr_DMUS_IO_CONTAINED_OBJECT_HEADER (LPDMUS_IO_CONTAINED_OBJECT_HEADER pHeader) {
|
|
if (pHeader) {
|
|
char buffer[1024], *ptr = buffer;
|
|
|
|
ptr += sprintf(ptr, "DMUS_IO_CONTAINED_OBJECT_HEADER (%p):", pHeader);
|
|
ptr += sprintf(ptr, "\n - guidClassID = %s", debugstr_dmguid(&pHeader->guidClassID));
|
|
ptr += sprintf(ptr, "\n - dwFlags = %#lx%s", pHeader->dwFlags,
|
|
pHeader->dwFlags & DMUS_CONTAINED_OBJF_KEEP ? " (DMUS_CONTAINED_OBJF_KEEP)" : "");
|
|
ptr += sprintf(ptr, "\n - ckid = %s", debugstr_fourcc (pHeader->ckid));
|
|
ptr += sprintf(ptr, "\n - fccType = %s", debugstr_fourcc (pHeader->fccType));
|
|
|
|
return wine_dbg_sprintf("%s", buffer);
|
|
} else {
|
|
return wine_dbg_sprintf("(NULL)");
|
|
}
|
|
}
|