Problem in DirectShow!!

Started by
0 comments, last by loseredkimo 20 years, 4 months ago
I want to play a MP3 file, and I use DirectShow to play. But I have a problem!! /////////////My Function//////////////// //Suppose initiation is OK!! void playMP3( string fileName ) { pGraphBuilder->RenderFile( fileName.data(), NULL ); ^^^^^^^^^^^^^^^^ //I want that I can input a fileName to execute, //but I only play with RenderFile( L"c:\\test.mp3", NULL ); pMediaContorl->Run(); } ////////////////////////////////////////// So how can I do for this??
hi...
Advertisement
You can change your param to be LPCWSTR and then you won''t have to worry about the L

This topic is closed to new replies.

Advertisement