How can I check if BASS is playing stream?
How can I check if BASS is playing stream in C#? I mean, I need something like:
public WMPLib.WindowsMediaPlayer wp = new WMPLib.WindowsMediaPlayer();
if(wp.enabled)
{
//d开发者_如何学编程o something
}
else
{
//do something different
}
Any help would be appreciated.
EDIT: I'm going to make simple bool and change it everytime I need.
Use BASS_ChannelIsActive()
Marko.
精彩评论