Anyone knows what I'm doing wrong?

Started by
1 comment, last by Aram 22 years, 2 months ago
I have not programed much but I have created a function that looks like this: void LoadSoundFile(IDirectMusicPerformance8 * PERFORMANCE, IDirectMusicSegment8 * SEGMENT, WCHAR* szWAV) { Loader->LoadObjectFromFile(CLSID_DirectMusicSegment, IID_IDirectMusicSegment8, szWAV, (void **) &SEGMENT); SEGMENT->SetParam(GUID_DirectMusicAllTypes, 0xFFFFFFFF, DMUS_SEG_ALLTRACKS, 0, NULL); SEGMENT->Download(PERFORMANCE); } But when Im trying to pass the file name of my wav file, it doesn,t seem to work. Could anyone explain to me why? Thanks
True words are not always beautiful, beautiful words are not always truthful.
Advertisement
What do you mean by "it doesn''t seem to work"? Is it crashing? Is not not compiling? Is it running but not doing anything?

My guess is that you''re calling this with an ASCII string instead of a UNICODE string. Try putting an L in front of the opening quote (i.e. L"mywavfile.wav")
Thats exactly how I''m doing...but the file doesnt seem to load.
So when I''m playing it doesn''t "make noise" =)...

True words are not always beautiful, beautiful words are not always truthful.

This topic is closed to new replies.

Advertisement