1 /* DirectMusicComposer Main
3 * Copyright (C) 2003-2004 Rok Mandeljc
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/port.h"
23 #include "dmcompos_private.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(dmcompos
);
27 LONG DMCOMPOS_refCount
= 0;
30 const IClassFactoryVtbl
*lpVtbl
;
33 /******************************************************************
34 * DirectMusicChordMap ClassFactory
36 static HRESULT WINAPI
ChordMapCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
37 FIXME("- no interface IID: %s\n", debugstr_guid(riid
));
39 if (ppobj
== NULL
) return E_POINTER
;
44 static ULONG WINAPI
ChordMapCF_AddRef(LPCLASSFACTORY iface
) {
45 DMCOMPOS_LockModule();
47 return 2; /* non-heap based object */
50 static ULONG WINAPI
ChordMapCF_Release(LPCLASSFACTORY iface
) {
51 DMCOMPOS_UnlockModule();
53 return 1; /* non-heap based object */
56 static HRESULT WINAPI
ChordMapCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
, REFIID riid
, LPVOID
*ppobj
) {
57 TRACE ("(%p, %s, %p)\n", pOuter
, debugstr_dmguid(riid
), ppobj
);
59 return DMUSIC_CreateDirectMusicChordMapImpl (riid
, ppobj
, pOuter
);
62 static HRESULT WINAPI
ChordMapCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
63 TRACE("(%d)\n", dolock
);
66 DMCOMPOS_LockModule();
68 DMCOMPOS_UnlockModule();
73 static const IClassFactoryVtbl ChordMapCF_Vtbl
= {
74 ChordMapCF_QueryInterface
,
77 ChordMapCF_CreateInstance
,
81 static IClassFactoryImpl ChordMap_CF
= {&ChordMapCF_Vtbl
};
83 /******************************************************************
84 * DirectMusicComposer ClassFactory
86 static HRESULT WINAPI
ComposerCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
87 FIXME("- no interface IID: %s\n", debugstr_guid(riid
));
89 if (ppobj
== NULL
) return E_POINTER
;
94 static ULONG WINAPI
ComposerCF_AddRef(LPCLASSFACTORY iface
) {
95 DMCOMPOS_LockModule();
97 return 2; /* non-heap based object */
100 static ULONG WINAPI
ComposerCF_Release(LPCLASSFACTORY iface
) {
101 DMCOMPOS_UnlockModule();
103 return 1; /* non-heap based object */
106 static HRESULT WINAPI
ComposerCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
, REFIID riid
, LPVOID
*ppobj
) {
107 TRACE ("(%p, %s, %p)\n", pOuter
, debugstr_dmguid(riid
), ppobj
);
109 return DMUSIC_CreateDirectMusicComposerImpl (riid
, ppobj
, pOuter
);
112 static HRESULT WINAPI
ComposerCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
113 TRACE("(%d)\n", dolock
);
116 DMCOMPOS_LockModule();
118 DMCOMPOS_UnlockModule();
123 static const IClassFactoryVtbl ComposerCF_Vtbl
= {
124 ComposerCF_QueryInterface
,
127 ComposerCF_CreateInstance
,
128 ComposerCF_LockServer
131 static IClassFactoryImpl Composer_CF
= {&ComposerCF_Vtbl
};
133 /******************************************************************
134 * DirectMusicChordMapTrack ClassFactory
136 static HRESULT WINAPI
ChordMapTrackCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
137 FIXME("- no interface IID: %s\n", debugstr_guid(riid
));
139 if (ppobj
== NULL
) return E_POINTER
;
141 return E_NOINTERFACE
;
144 static ULONG WINAPI
ChordMapTrackCF_AddRef(LPCLASSFACTORY iface
) {
145 DMCOMPOS_LockModule();
147 return 2; /* non-heap based object */
150 static ULONG WINAPI
ChordMapTrackCF_Release(LPCLASSFACTORY iface
) {
151 DMCOMPOS_UnlockModule();
153 return 1; /* non-heap based object */
156 static HRESULT WINAPI
ChordMapTrackCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
, REFIID riid
, LPVOID
*ppobj
) {
157 TRACE ("(%p, %s, %p)\n", pOuter
, debugstr_dmguid(riid
), ppobj
);
159 return DMUSIC_CreateDirectMusicChordMapTrack (riid
, ppobj
, pOuter
);
162 static HRESULT WINAPI
ChordMapTrackCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
163 TRACE("(%d)\n", dolock
);
166 DMCOMPOS_LockModule();
168 DMCOMPOS_UnlockModule();
173 static const IClassFactoryVtbl ChordMapTrackCF_Vtbl
= {
174 ChordMapTrackCF_QueryInterface
,
175 ChordMapTrackCF_AddRef
,
176 ChordMapTrackCF_Release
,
177 ChordMapTrackCF_CreateInstance
,
178 ChordMapTrackCF_LockServer
181 static IClassFactoryImpl ChordMapTrack_CF
= {&ChordMapTrackCF_Vtbl
};
183 /******************************************************************
184 * DirectMusicTemplate ClassFactory
186 static HRESULT WINAPI
TemplateCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
187 FIXME("- no interface IID: %s\n", debugstr_guid(riid
));
189 if (ppobj
== NULL
) return E_POINTER
;
191 return E_NOINTERFACE
;
194 static ULONG WINAPI
TemplateCF_AddRef(LPCLASSFACTORY iface
) {
195 DMCOMPOS_LockModule();
197 return 2; /* non-heap based object */
200 static ULONG WINAPI
TemplateCF_Release(LPCLASSFACTORY iface
) {
201 DMCOMPOS_UnlockModule();
203 return 1; /* non-heap based object */
206 static HRESULT WINAPI
TemplateCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
, REFIID riid
, LPVOID
*ppobj
) {
207 TRACE ("(%p, %s, %p)\n", pOuter
, debugstr_dmguid(riid
), ppobj
);
209 WARN("(%s,%p): not found\n", debugstr_dmguid(riid
), ppobj
);
211 return E_NOINTERFACE
;
214 static HRESULT WINAPI
TemplateCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
215 TRACE("(%d)\n", dolock
);
218 DMCOMPOS_LockModule();
220 DMCOMPOS_UnlockModule();
225 static const IClassFactoryVtbl TemplateCF_Vtbl
= {
226 TemplateCF_QueryInterface
,
229 TemplateCF_CreateInstance
,
230 TemplateCF_LockServer
233 static IClassFactoryImpl Template_CF
= {&TemplateCF_Vtbl
};
235 /******************************************************************
236 * DirectMusicSignPostTrack ClassFactory
238 static HRESULT WINAPI
SignPostTrackCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
239 FIXME("- no interface IID: %s\n", debugstr_guid(riid
));
241 if (ppobj
== NULL
) return E_POINTER
;
243 return E_NOINTERFACE
;
246 static ULONG WINAPI
SignPostTrackCF_AddRef(LPCLASSFACTORY iface
) {
247 DMCOMPOS_LockModule();
249 return 2; /* non-heap based object */
252 static ULONG WINAPI
SignPostTrackCF_Release(LPCLASSFACTORY iface
) {
253 DMCOMPOS_UnlockModule();
255 return 1; /* non-heap based object */
258 static HRESULT WINAPI
SignPostTrackCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
, REFIID riid
, LPVOID
*ppobj
) {
259 TRACE ("(%p, %s, %p)\n", pOuter
, debugstr_dmguid(riid
), ppobj
);
261 return DMUSIC_CreateDirectMusicSignPostTrack (riid
, ppobj
, pOuter
);
264 static HRESULT WINAPI
SignPostTrackCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
265 TRACE("(%d)\n", dolock
);
268 DMCOMPOS_LockModule();
270 DMCOMPOS_UnlockModule();
275 static const IClassFactoryVtbl SignPostTrackCF_Vtbl
= {
276 SignPostTrackCF_QueryInterface
,
277 SignPostTrackCF_AddRef
,
278 SignPostTrackCF_Release
,
279 SignPostTrackCF_CreateInstance
,
280 SignPostTrackCF_LockServer
283 static IClassFactoryImpl SignPostTrack_CF
= {&SignPostTrackCF_Vtbl
};
285 /******************************************************************
290 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
) {
291 if (fdwReason
== DLL_PROCESS_ATTACH
) {
292 DisableThreadLibraryCalls(hinstDLL
);
293 /* FIXME: Initialisation */
295 else if (fdwReason
== DLL_PROCESS_DETACH
) {
303 /******************************************************************
304 * DllCanUnloadNow (DMCOMPOS.@)
308 HRESULT WINAPI
DllCanUnloadNow(void) {
309 return DMCOMPOS_refCount
!= 0 ? S_FALSE
: S_OK
;
313 /******************************************************************
314 * DllGetClassObject (DMCOMPOS.@)
318 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
) {
319 TRACE("(%s, %s, %p)\n", debugstr_dmguid(rclsid
), debugstr_dmguid(riid
), ppv
);
320 if (IsEqualCLSID (rclsid
, &CLSID_DirectMusicChordMap
) && IsEqualIID (riid
, &IID_IClassFactory
)) {
322 IClassFactory_AddRef((IClassFactory
*)*ppv
);
324 } else if (IsEqualCLSID (rclsid
, &CLSID_DirectMusicComposer
) && IsEqualIID (riid
, &IID_IClassFactory
)) {
326 IClassFactory_AddRef((IClassFactory
*)*ppv
);
328 } else if (IsEqualCLSID (rclsid
, &CLSID_DirectMusicChordMapTrack
) && IsEqualIID (riid
, &IID_IClassFactory
)) {
329 *ppv
= &ChordMapTrack_CF
;
330 IClassFactory_AddRef((IClassFactory
*)*ppv
);
332 } else if (IsEqualCLSID (rclsid
, &CLSID_DirectMusicTemplate
) && IsEqualIID (riid
, &IID_IClassFactory
)) {
334 IClassFactory_AddRef((IClassFactory
*)*ppv
);
336 } else if (IsEqualCLSID (rclsid
, &CLSID_DirectMusicSignPostTrack
) && IsEqualIID (riid
, &IID_IClassFactory
)) {
337 *ppv
= &SignPostTrack_CF
;
338 IClassFactory_AddRef((IClassFactory
*)*ppv
);
342 WARN("(%s, %s, %p): no interface found.\n", debugstr_dmguid(rclsid
), debugstr_dmguid(riid
), ppv
);
343 return CLASS_E_CLASSNOTAVAILABLE
;
347 /******************************************************************
352 /* FOURCC to string conversion for debug messages */
353 const char *debugstr_fourcc (DWORD fourcc
) {
354 if (!fourcc
) return "'null'";
355 return wine_dbg_sprintf ("\'%c%c%c%c\'",
356 (char)(fourcc
), (char)(fourcc
>> 8),
357 (char)(fourcc
>> 16), (char)(fourcc
>> 24));
360 /* DMUS_VERSION struct to string conversion for debug messages */
361 static const char *debugstr_dmversion (const DMUS_VERSION
*version
) {
362 if (!version
) return "'null'";
363 return wine_dbg_sprintf ("\'%i,%i,%i,%i\'",
364 (int)((version
->dwVersionMS
& 0xFFFF0000) >> 8), (int)(version
->dwVersionMS
& 0x0000FFFF),
365 (int)((version
->dwVersionLS
& 0xFFFF0000) >> 8), (int)(version
->dwVersionLS
& 0x0000FFFF));
368 /* returns name of given GUID */
369 const char *debugstr_dmguid (const GUID
*id
) {
370 static const guid_info guids
[] = {
372 GE(CLSID_AudioVBScript
),
373 GE(CLSID_DirectMusic
),
374 GE(CLSID_DirectMusicAudioPath
),
375 GE(CLSID_DirectMusicAudioPathConfig
),
376 GE(CLSID_DirectMusicAuditionTrack
),
377 GE(CLSID_DirectMusicBand
),
378 GE(CLSID_DirectMusicBandTrack
),
379 GE(CLSID_DirectMusicChordMapTrack
),
380 GE(CLSID_DirectMusicChordMap
),
381 GE(CLSID_DirectMusicChordTrack
),
382 GE(CLSID_DirectMusicCollection
),
383 GE(CLSID_DirectMusicCommandTrack
),
384 GE(CLSID_DirectMusicComposer
),
385 GE(CLSID_DirectMusicContainer
),
386 GE(CLSID_DirectMusicGraph
),
387 GE(CLSID_DirectMusicLoader
),
388 GE(CLSID_DirectMusicLyricsTrack
),
389 GE(CLSID_DirectMusicMarkerTrack
),
390 GE(CLSID_DirectMusicMelodyFormulationTrack
),
391 GE(CLSID_DirectMusicMotifTrack
),
392 GE(CLSID_DirectMusicMuteTrack
),
393 GE(CLSID_DirectMusicParamControlTrack
),
394 GE(CLSID_DirectMusicPatternTrack
),
395 GE(CLSID_DirectMusicPerformance
),
396 GE(CLSID_DirectMusicScript
),
397 GE(CLSID_DirectMusicScriptAutoImpSegment
),
398 GE(CLSID_DirectMusicScriptAutoImpPerformance
),
399 GE(CLSID_DirectMusicScriptAutoImpSegmentState
),
400 GE(CLSID_DirectMusicScriptAutoImpAudioPathConfig
),
401 GE(CLSID_DirectMusicScriptAutoImpAudioPath
),
402 GE(CLSID_DirectMusicScriptAutoImpSong
),
403 GE(CLSID_DirectMusicScriptSourceCodeLoader
),
404 GE(CLSID_DirectMusicScriptTrack
),
405 GE(CLSID_DirectMusicSection
),
406 GE(CLSID_DirectMusicSegment
),
407 GE(CLSID_DirectMusicSegmentState
),
408 GE(CLSID_DirectMusicSegmentTriggerTrack
),
409 GE(CLSID_DirectMusicSegTriggerTrack
),
410 GE(CLSID_DirectMusicSeqTrack
),
411 GE(CLSID_DirectMusicSignPostTrack
),
412 GE(CLSID_DirectMusicSong
),
413 GE(CLSID_DirectMusicStyle
),
414 GE(CLSID_DirectMusicStyleTrack
),
415 GE(CLSID_DirectMusicSynth
),
416 GE(CLSID_DirectMusicSynthSink
),
417 GE(CLSID_DirectMusicSysExTrack
),
418 GE(CLSID_DirectMusicTemplate
),
419 GE(CLSID_DirectMusicTempoTrack
),
420 GE(CLSID_DirectMusicTimeSigTrack
),
421 GE(CLSID_DirectMusicWaveTrack
),
422 GE(CLSID_DirectSoundWave
),
424 GE(IID_IDirectMusic
),
425 GE(IID_IDirectMusic2
),
426 GE(IID_IDirectMusic8
),
427 GE(IID_IDirectMusicAudioPath
),
428 GE(IID_IDirectMusicBand
),
429 GE(IID_IDirectMusicBuffer
),
430 GE(IID_IDirectMusicChordMap
),
431 GE(IID_IDirectMusicCollection
),
432 GE(IID_IDirectMusicComposer
),
433 GE(IID_IDirectMusicContainer
),
434 GE(IID_IDirectMusicDownload
),
435 GE(IID_IDirectMusicDownloadedInstrument
),
436 GE(IID_IDirectMusicGetLoader
),
437 GE(IID_IDirectMusicGraph
),
438 GE(IID_IDirectMusicInstrument
),
439 GE(IID_IDirectMusicLoader
),
440 GE(IID_IDirectMusicLoader8
),
441 GE(IID_IDirectMusicObject
),
442 GE(IID_IDirectMusicPatternTrack
),
443 GE(IID_IDirectMusicPerformance
),
444 GE(IID_IDirectMusicPerformance2
),
445 GE(IID_IDirectMusicPerformance8
),
446 GE(IID_IDirectMusicPort
),
447 GE(IID_IDirectMusicPortDownload
),
448 GE(IID_IDirectMusicScript
),
449 GE(IID_IDirectMusicSegment
),
450 GE(IID_IDirectMusicSegment2
),
451 GE(IID_IDirectMusicSegment8
),
452 GE(IID_IDirectMusicSegmentState
),
453 GE(IID_IDirectMusicSegmentState8
),
454 GE(IID_IDirectMusicStyle
),
455 GE(IID_IDirectMusicStyle8
),
456 GE(IID_IDirectMusicSynth
),
457 GE(IID_IDirectMusicSynth8
),
458 GE(IID_IDirectMusicSynthSink
),
459 GE(IID_IDirectMusicThru
),
460 GE(IID_IDirectMusicTool
),
461 GE(IID_IDirectMusicTool8
),
462 GE(IID_IDirectMusicTrack
),
463 GE(IID_IDirectMusicTrack8
),
465 GE(IID_IPersistStream
),
467 GE(IID_IClassFactory
),
469 GE(GUID_DirectMusicAllTypes
),
470 GE(GUID_NOTIFICATION_CHORD
),
471 GE(GUID_NOTIFICATION_COMMAND
),
472 GE(GUID_NOTIFICATION_MEASUREANDBEAT
),
473 GE(GUID_NOTIFICATION_PERFORMANCE
),
474 GE(GUID_NOTIFICATION_RECOMPOSE
),
475 GE(GUID_NOTIFICATION_SEGMENT
),
478 GE(GUID_CommandParam
),
479 GE(GUID_CommandParam2
),
480 GE(GUID_CommandParamNext
),
481 GE(GUID_IDirectMusicBand
),
482 GE(GUID_IDirectMusicChordMap
),
483 GE(GUID_IDirectMusicStyle
),
485 GE(GUID_Play_Marker
),
486 GE(GUID_RhythmParam
),
488 GE(GUID_TimeSignature
),
489 GE(GUID_Valid_Start_Time
),
490 GE(GUID_Clear_All_Bands
),
491 GE(GUID_ConnectToDLSCollection
),
492 GE(GUID_Disable_Auto_Download
),
493 GE(GUID_DisableTempo
),
494 GE(GUID_DisableTimeSig
),
496 GE(GUID_DownloadToAudioPath
),
497 GE(GUID_Enable_Auto_Download
),
498 GE(GUID_EnableTempo
),
499 GE(GUID_EnableTimeSig
),
500 GE(GUID_IgnoreBankSelectForGM
),
501 GE(GUID_SeedVariations
),
502 GE(GUID_StandardMIDIFile
),
504 GE(GUID_UnloadFromAudioPath
),
506 GE(GUID_PerfMasterTempo
),
507 GE(GUID_PerfMasterVolume
),
508 GE(GUID_PerfMasterGrooveLevel
),
509 GE(GUID_PerfAutoDownload
),
510 GE(GUID_DefaultGMCollection
),
511 GE(GUID_Synth_Default
),
512 GE(GUID_Buffer_Reverb
),
513 GE(GUID_Buffer_EnvReverb
),
514 GE(GUID_Buffer_Stereo
),
515 GE(GUID_Buffer_3D_Dry
),
516 GE(GUID_Buffer_Mono
),
517 GE(GUID_DMUS_PROP_GM_Hardware
),
518 GE(GUID_DMUS_PROP_GS_Capable
),
519 GE(GUID_DMUS_PROP_GS_Hardware
),
520 GE(GUID_DMUS_PROP_DLS1
),
521 GE(GUID_DMUS_PROP_DLS2
),
522 GE(GUID_DMUS_PROP_Effects
),
523 GE(GUID_DMUS_PROP_INSTRUMENT2
),
524 GE(GUID_DMUS_PROP_LegacyCaps
),
525 GE(GUID_DMUS_PROP_MemorySize
),
526 GE(GUID_DMUS_PROP_SampleMemorySize
),
527 GE(GUID_DMUS_PROP_SamplePlaybackRate
),
528 GE(GUID_DMUS_PROP_SetSynthSink
),
529 GE(GUID_DMUS_PROP_SinkUsesDSound
),
530 GE(GUID_DMUS_PROP_SynthSink_DSOUND
),
531 GE(GUID_DMUS_PROP_SynthSink_WAVE
),
532 GE(GUID_DMUS_PROP_Volume
),
533 GE(GUID_DMUS_PROP_WavesReverb
),
534 GE(GUID_DMUS_PROP_WriteLatency
),
535 GE(GUID_DMUS_PROP_WritePeriod
),
536 GE(GUID_DMUS_PROP_XG_Capable
),
537 GE(GUID_DMUS_PROP_XG_Hardware
)
542 if (!id
) return "(null)";
544 for (i
= 0; i
< sizeof(guids
)/sizeof(guids
[0]); i
++) {
545 if (IsEqualGUID(id
, guids
[i
].guid
))
546 return guids
[i
].name
;
548 /* if we didn't find it, act like standard debugstr_guid */
549 return debugstr_guid(id
);
552 /* generic flag-dumping function */
553 static const char* debugstr_flags (DWORD flags
, const flag_info
* names
, size_t num_names
){
554 char buffer
[128] = "", *ptr
= &buffer
[0];
556 int size
= sizeof(buffer
);
558 for (i
=0; i
< num_names
; i
++)
560 if ((flags
& names
[i
].val
) || /* standard flag*/
561 ((!flags
) && (!names
[i
].val
))) { /* zero value only */
562 int cnt
= snprintf(ptr
, size
, "%s ", names
[i
].name
);
563 if (cnt
< 0 || cnt
>= size
) break;
569 return wine_dbg_sprintf("%s", buffer
);
572 /* dump DMUS_OBJ flags */
573 static const char *debugstr_DMUS_OBJ_FLAGS (DWORD flagmask
) {
574 static const flag_info flags
[] = {
578 FE(DMUS_OBJ_CATEGORY
),
579 FE(DMUS_OBJ_FILENAME
),
580 FE(DMUS_OBJ_FULLPATH
),
582 FE(DMUS_OBJ_VERSION
),
588 return debugstr_flags (flagmask
, flags
, sizeof(flags
)/sizeof(flags
[0]));
591 /* dump whole DMUS_OBJECTDESC struct */
592 const char *debugstr_DMUS_OBJECTDESC (LPDMUS_OBJECTDESC pDesc
) {
594 char buffer
[1024] = "", *ptr
= &buffer
[0];
596 ptr
+= sprintf(ptr
, "DMUS_OBJECTDESC (%p):\n", pDesc
);
597 ptr
+= sprintf(ptr
, " - dwSize = %d\n", pDesc
->dwSize
);
598 ptr
+= sprintf(ptr
, " - dwValidData = %s\n", debugstr_DMUS_OBJ_FLAGS (pDesc
->dwValidData
));
599 if (pDesc
->dwValidData
& DMUS_OBJ_CLASS
) ptr
+= sprintf(ptr
, " - guidClass = %s\n", debugstr_dmguid(&pDesc
->guidClass
));
600 if (pDesc
->dwValidData
& DMUS_OBJ_OBJECT
) ptr
+= sprintf(ptr
, " - guidObject = %s\n", debugstr_guid(&pDesc
->guidObject
));
601 if (pDesc
->dwValidData
& DMUS_OBJ_DATE
) ptr
+= sprintf(ptr
, " - ftDate = FIXME\n");
602 if (pDesc
->dwValidData
& DMUS_OBJ_VERSION
) ptr
+= sprintf(ptr
, " - vVersion = %s\n", debugstr_dmversion(&pDesc
->vVersion
));
603 if (pDesc
->dwValidData
& DMUS_OBJ_NAME
) ptr
+= sprintf(ptr
, " - wszName = %s\n", debugstr_w(pDesc
->wszName
));
604 if (pDesc
->dwValidData
& DMUS_OBJ_CATEGORY
) ptr
+= sprintf(ptr
, " - wszCategory = %s\n", debugstr_w(pDesc
->wszCategory
));
605 if (pDesc
->dwValidData
& DMUS_OBJ_FILENAME
) ptr
+= sprintf(ptr
, " - wszFileName = %s\n", debugstr_w(pDesc
->wszFileName
));
606 if (pDesc
->dwValidData
& DMUS_OBJ_MEMORY
) ptr
+= sprintf(ptr
, " - llMemLength = 0x%s\n - pbMemData = %p\n",
607 wine_dbgstr_longlong(pDesc
->llMemLength
), pDesc
->pbMemData
);
608 if (pDesc
->dwValidData
& DMUS_OBJ_STREAM
) ptr
+= sprintf(ptr
, " - pStream = %p", pDesc
->pStream
);
610 return wine_dbg_sprintf("%s", buffer
);
612 return wine_dbg_sprintf("(NULL)");