Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6c02a2a8
Commit
6c02a2a8
authored
Dec 01, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Remove some unused functions.
parent
aaf646cf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
236 deletions
+0
-236
dmutils.c
dlls/dmime/dmutils.c
+0
-227
dmutils.h
dlls/dmime/dmutils.h
+0
-9
No files found.
dlls/dmime/dmutils.c
View file @
6c02a2a8
...
...
@@ -46,20 +46,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
dmusic
);
WINE_DECLARE_DEBUG_CHANNEL
(
dmfile
);
/* check whether the given DWORD is even (return 0) or odd (return 1) */
int
even_or_odd
(
DWORD
number
)
{
return
(
number
&
0x1
);
/* basically, check if bit 0 is set ;) */
}
/* 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
;
}
HRESULT
IDirectMusicUtils_IPersistStream_ParseDescGeneric
(
DMUS_PRIVATE_CHUNK
*
pChunk
,
IStream
*
pStm
,
LPDMUS_OBJECTDESC
pDesc
)
{
switch
(
pChunk
->
fccID
)
{
...
...
@@ -466,154 +452,6 @@ const char *debugstr_dmguid (const GUID *id) {
return
debugstr_guid
(
id
);
}
/* returns name of given error code */
const
char
*
debugstr_dmreturn
(
DWORD
code
)
{
static
const
flag_info
codes
[]
=
{
FE
(
S_OK
),
FE
(
S_FALSE
),
FE
(
DMUS_S_PARTIALLOAD
),
FE
(
DMUS_S_PARTIALDOWNLOAD
),
FE
(
DMUS_S_REQUEUE
),
FE
(
DMUS_S_FREE
),
FE
(
DMUS_S_END
),
FE
(
DMUS_S_STRING_TRUNCATED
),
FE
(
DMUS_S_LAST_TOOL
),
FE
(
DMUS_S_OVER_CHORD
),
FE
(
DMUS_S_UP_OCTAVE
),
FE
(
DMUS_S_DOWN_OCTAVE
),
FE
(
DMUS_S_NOBUFFERCONTROL
),
FE
(
DMUS_S_GARBAGE_COLLECTED
),
FE
(
E_NOTIMPL
),
FE
(
E_NOINTERFACE
),
FE
(
E_POINTER
),
FE
(
CLASS_E_NOAGGREGATION
),
FE
(
CLASS_E_CLASSNOTAVAILABLE
),
FE
(
REGDB_E_CLASSNOTREG
),
FE
(
E_OUTOFMEMORY
),
FE
(
E_FAIL
),
FE
(
E_INVALIDARG
),
FE
(
DMUS_E_DRIVER_FAILED
),
FE
(
DMUS_E_PORTS_OPEN
),
FE
(
DMUS_E_DEVICE_IN_USE
),
FE
(
DMUS_E_INSUFFICIENTBUFFER
),
FE
(
DMUS_E_BUFFERNOTSET
),
FE
(
DMUS_E_BUFFERNOTAVAILABLE
),
FE
(
DMUS_E_NOTADLSCOL
),
FE
(
DMUS_E_INVALIDOFFSET
),
FE
(
DMUS_E_ALREADY_LOADED
),
FE
(
DMUS_E_INVALIDPOS
),
FE
(
DMUS_E_INVALIDPATCH
),
FE
(
DMUS_E_CANNOTSEEK
),
FE
(
DMUS_E_CANNOTWRITE
),
FE
(
DMUS_E_CHUNKNOTFOUND
),
FE
(
DMUS_E_INVALID_DOWNLOADID
),
FE
(
DMUS_E_NOT_DOWNLOADED_TO_PORT
),
FE
(
DMUS_E_ALREADY_DOWNLOADED
),
FE
(
DMUS_E_UNKNOWN_PROPERTY
),
FE
(
DMUS_E_SET_UNSUPPORTED
),
FE
(
DMUS_E_GET_UNSUPPORTED
),
FE
(
DMUS_E_NOTMONO
),
FE
(
DMUS_E_BADARTICULATION
),
FE
(
DMUS_E_BADINSTRUMENT
),
FE
(
DMUS_E_BADWAVELINK
),
FE
(
DMUS_E_NOARTICULATION
),
FE
(
DMUS_E_NOTPCM
),
FE
(
DMUS_E_BADWAVE
),
FE
(
DMUS_E_BADOFFSETTABLE
),
FE
(
DMUS_E_UNKNOWNDOWNLOAD
),
FE
(
DMUS_E_NOSYNTHSINK
),
FE
(
DMUS_E_ALREADYOPEN
),
FE
(
DMUS_E_ALREADYCLOSED
),
FE
(
DMUS_E_SYNTHNOTCONFIGURED
),
FE
(
DMUS_E_SYNTHACTIVE
),
FE
(
DMUS_E_CANNOTREAD
),
FE
(
DMUS_E_DMUSIC_RELEASED
),
FE
(
DMUS_E_BUFFER_EMPTY
),
FE
(
DMUS_E_BUFFER_FULL
),
FE
(
DMUS_E_PORT_NOT_CAPTURE
),
FE
(
DMUS_E_PORT_NOT_RENDER
),
FE
(
DMUS_E_DSOUND_NOT_SET
),
FE
(
DMUS_E_ALREADY_ACTIVATED
),
FE
(
DMUS_E_INVALIDBUFFER
),
FE
(
DMUS_E_WAVEFORMATNOTSUPPORTED
),
FE
(
DMUS_E_SYNTHINACTIVE
),
FE
(
DMUS_E_DSOUND_ALREADY_SET
),
FE
(
DMUS_E_INVALID_EVENT
),
FE
(
DMUS_E_UNSUPPORTED_STREAM
),
FE
(
DMUS_E_ALREADY_INITED
),
FE
(
DMUS_E_INVALID_BAND
),
FE
(
DMUS_E_TRACK_HDR_NOT_FIRST_CK
),
FE
(
DMUS_E_TOOL_HDR_NOT_FIRST_CK
),
FE
(
DMUS_E_INVALID_TRACK_HDR
),
FE
(
DMUS_E_INVALID_TOOL_HDR
),
FE
(
DMUS_E_ALL_TOOLS_FAILED
),
FE
(
DMUS_E_ALL_TRACKS_FAILED
),
FE
(
DMUS_E_NOT_FOUND
),
FE
(
DMUS_E_NOT_INIT
),
FE
(
DMUS_E_TYPE_DISABLED
),
FE
(
DMUS_E_TYPE_UNSUPPORTED
),
FE
(
DMUS_E_TIME_PAST
),
FE
(
DMUS_E_TRACK_NOT_FOUND
),
FE
(
DMUS_E_TRACK_NO_CLOCKTIME_SUPPORT
),
FE
(
DMUS_E_NO_MASTER_CLOCK
),
FE
(
DMUS_E_LOADER_NOCLASSID
),
FE
(
DMUS_E_LOADER_BADPATH
),
FE
(
DMUS_E_LOADER_FAILEDOPEN
),
FE
(
DMUS_E_LOADER_FORMATNOTSUPPORTED
),
FE
(
DMUS_E_LOADER_FAILEDCREATE
),
FE
(
DMUS_E_LOADER_OBJECTNOTFOUND
),
FE
(
DMUS_E_LOADER_NOFILENAME
),
FE
(
DMUS_E_INVALIDFILE
),
FE
(
DMUS_E_ALREADY_EXISTS
),
FE
(
DMUS_E_OUT_OF_RANGE
),
FE
(
DMUS_E_SEGMENT_INIT_FAILED
),
FE
(
DMUS_E_ALREADY_SENT
),
FE
(
DMUS_E_CANNOT_FREE
),
FE
(
DMUS_E_CANNOT_OPEN_PORT
),
FE
(
DMUS_E_CANNOT_CONVERT
),
FE
(
DMUS_E_DESCEND_CHUNK_FAIL
),
FE
(
DMUS_E_NOT_LOADED
),
FE
(
DMUS_E_SCRIPT_LANGUAGE_INCOMPATIBLE
),
FE
(
DMUS_E_SCRIPT_UNSUPPORTED_VARTYPE
),
FE
(
DMUS_E_SCRIPT_ERROR_IN_SCRIPT
),
FE
(
DMUS_E_SCRIPT_CANTLOAD_OLEAUT32
),
FE
(
DMUS_E_SCRIPT_LOADSCRIPT_ERROR
),
FE
(
DMUS_E_SCRIPT_INVALID_FILE
),
FE
(
DMUS_E_INVALID_SCRIPTTRACK
),
FE
(
DMUS_E_SCRIPT_VARIABLE_NOT_FOUND
),
FE
(
DMUS_E_SCRIPT_ROUTINE_NOT_FOUND
),
FE
(
DMUS_E_SCRIPT_CONTENT_READONLY
),
FE
(
DMUS_E_SCRIPT_NOT_A_REFERENCE
),
FE
(
DMUS_E_SCRIPT_VALUE_NOT_SUPPORTED
),
FE
(
DMUS_E_INVALID_SEGMENTTRIGGERTRACK
),
FE
(
DMUS_E_INVALID_LYRICSTRACK
),
FE
(
DMUS_E_INVALID_PARAMCONTROLTRACK
),
FE
(
DMUS_E_AUDIOVBSCRIPT_SYNTAXERROR
),
FE
(
DMUS_E_AUDIOVBSCRIPT_RUNTIMEERROR
),
FE
(
DMUS_E_AUDIOVBSCRIPT_OPERATIONFAILURE
),
FE
(
DMUS_E_AUDIOPATHS_NOT_VALID
),
FE
(
DMUS_E_AUDIOPATHS_IN_USE
),
FE
(
DMUS_E_NO_AUDIOPATH_CONFIG
),
FE
(
DMUS_E_AUDIOPATH_INACTIVE
),
FE
(
DMUS_E_AUDIOPATH_NOBUFFER
),
FE
(
DMUS_E_AUDIOPATH_NOPORT
),
FE
(
DMUS_E_NO_AUDIOPATH
),
FE
(
DMUS_E_INVALIDCHUNK
),
FE
(
DMUS_E_AUDIOPATH_NOGLOBALFXBUFFER
),
FE
(
DMUS_E_INVALID_CONTAINER_OBJECT
)
};
unsigned
int
i
;
for
(
i
=
0
;
i
<
sizeof
(
codes
)
/
sizeof
(
codes
[
0
]);
i
++
)
{
if
(
code
==
codes
[
i
].
val
)
return
codes
[
i
].
name
;
}
/* if we didn't find it, return value */
return
wine_dbg_sprintf
(
"0x%08X"
,
code
);
}
/* generic flag-dumping function */
static
const
char
*
debugstr_flags
(
DWORD
flags
,
const
flag_info
*
names
,
size_t
num_names
){
static
char
buffer
[
128
]
=
""
,
*
ptr
=
&
buffer
[
0
];
...
...
@@ -652,22 +490,6 @@ static const char *debugstr_DMUS_OBJ_FLAGS (DWORD flagmask) {
return
debugstr_flags
(
flagmask
,
flags
,
sizeof
(
flags
)
/
sizeof
(
flags
[
0
]));
}
/* dump DMUS_CONTAINER flags */
static
const
char
*
debugstr_DMUS_CONTAINER_FLAGS
(
DWORD
flagmask
)
{
static
const
flag_info
flags
[]
=
{
FE
(
DMUS_CONTAINER_NOLOADS
)
};
return
debugstr_flags
(
flagmask
,
flags
,
sizeof
(
flags
)
/
sizeof
(
flags
[
0
]));
}
/* dump DMUS_CONTAINED_OBJF flags */
static
const
char
*
debugstr_DMUS_CONTAINED_OBJF_FLAGS
(
DWORD
flagmask
)
{
static
const
flag_info
flags
[]
=
{
FE
(
DMUS_CONTAINED_OBJF_KEEP
)
};
return
debugstr_flags
(
flagmask
,
flags
,
sizeof
(
flags
)
/
sizeof
(
flags
[
0
]));
}
const
char
*
debugstr_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
)
{
if
(
pDesc
)
{
char
buffer
[
1024
],
*
ptr
=
buffer
;
...
...
@@ -691,52 +513,3 @@ const char *debugstr_DMUS_OBJECTDESC (LPDMUS_OBJECTDESC pDesc) {
return
wine_dbg_sprintf
(
"(NULL)"
);
}
}
void
debug_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
)
{
if
(
pDesc
)
{
TRACE
(
"DMUS_OBJECTDESC (%p):
\n
"
,
pDesc
);
TRACE
(
" - dwSize = %d
\n
"
,
pDesc
->
dwSize
);
TRACE
(
" - dwValidData = %s
\n
"
,
debugstr_DMUS_OBJ_FLAGS
(
pDesc
->
dwValidData
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_NAME
)
TRACE
(
" - wszName = %s
\n
"
,
debugstr_w
(
pDesc
->
wszName
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_CLASS
)
TRACE
(
" - guidClass = %s
\n
"
,
debugstr_dmguid
(
&
pDesc
->
guidClass
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_OBJECT
)
TRACE
(
" - guidObject = %s
\n
"
,
debugstr_guid
(
&
pDesc
->
guidObject
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_DATE
)
TRACE
(
" - ftDate = FIXME
\n
"
);
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_VERSION
)
TRACE
(
" - vVersion = %s
\n
"
,
debugstr_dmversion
(
&
pDesc
->
vVersion
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_CATEGORY
)
TRACE
(
" - wszCategory = %s
\n
"
,
debugstr_w
(
pDesc
->
wszCategory
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_FILENAME
)
TRACE
(
" - wszFileName = %s
\n
"
,
debugstr_w
(
pDesc
->
wszFileName
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_MEMORY
)
TRACE
(
" - llMemLength = 0x%s
\n
- pbMemData = %p
\n
"
,
wine_dbgstr_longlong
(
pDesc
->
llMemLength
),
pDesc
->
pbMemData
);
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_STREAM
)
TRACE
(
" - pStream = %p
\n
"
,
pDesc
->
pStream
);
}
else
{
TRACE
(
"(NULL)
\n
"
);
}
}
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):
\n
"
,
pHeader
);
ptr
+=
sprintf
(
ptr
,
" - dwFlags = %s
\n
"
,
debugstr_DMUS_CONTAINER_FLAGS
(
pHeader
->
dwFlags
));
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):
\n
"
,
pHeader
);
ptr
+=
sprintf
(
ptr
,
" - guidClassID = %s
\n
"
,
debugstr_dmguid
(
&
pHeader
->
guidClassID
));
ptr
+=
sprintf
(
ptr
,
" - dwFlags = %s
\n
"
,
debugstr_DMUS_CONTAINED_OBJF_FLAGS
(
pHeader
->
dwFlags
));
ptr
+=
sprintf
(
ptr
,
" - ckid = %s
\n
"
,
debugstr_fourcc
(
pHeader
->
ckid
));
ptr
+=
sprintf
(
ptr
,
" - fccType = %s
\n
"
,
debugstr_fourcc
(
pHeader
->
fccType
));
return
wine_dbg_sprintf
(
"%s"
,
buffer
);
}
else
{
return
wine_dbg_sprintf
(
"(NULL)"
);
}
}
dlls/dmime/dmutils.h
View file @
6c02a2a8
...
...
@@ -60,21 +60,12 @@ typedef struct {
#define FE(x) { x, #x }
#define GE(x) { &x, #x }
/* check whether the given DWORD is even (return 0) or odd (return 1) */
extern
int
even_or_odd
(
DWORD
number
);
/* check whether chunkID is valid dmobject form chunk */
extern
BOOL
IS_VALID_DMFORM
(
FOURCC
chunkID
);
/* FOURCC to string conversion for debug messages */
extern
const
char
*
debugstr_fourcc
(
DWORD
fourcc
);
/* returns name of given GUID */
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
);
/* returns name of given error code */
extern
const
char
*
debugstr_dmreturn
(
DWORD
code
);
/* dump whole DMUS_OBJECTDESC struct */
extern
const
char
*
debugstr_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
);
extern
void
debug_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
);
extern
const
char
*
debugstr_DMUS_IO_CONTAINER_HEADER
(
LPDMUS_IO_CONTAINER_HEADER
pHeader
);
extern
const
char
*
debugstr_DMUS_IO_CONTAINED_OBJECT_HEADER
(
LPDMUS_IO_CONTAINED_OBJECT_HEADER
pHeader
);
#endif
/* __WINE_DMUTILS_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment