我有一个用 C++ 6.0 编写的旧应用程序。此应用程序管理一些声音,用于在制造环境中发出警报。
现在我想进行一些修改并使用 Windows Media Player。我对 C++ 的了解有限。有点迷失在指针中......
到目前为止,这是我设法做到的:
使用类向导将包装类添加到 wmplib.dll 并包含“wmp.h”。在 .cpp 文件中。
IWMPPlayer *player = new IWMPPlayer();
//player.SetUrl("http://streampoint.radioio.com/streams/57/45ec8c85a2a8a/listen.pls");
player->SetEnabled(true);
player->SetUrl("C:\\tada.wav");
IWMPControls *pControls = new IWMPControls();
*pControls = player->GetControls();
pControls->play();
有什么建议么?
谢谢