(svn r10446) -Codechange: Move extmidi's global data into its class.

This commit is contained in:
peter1138
2007-07-05 13:19:35 +00:00
parent c4aff8b0a4
commit b953493930
2 changed files with 27 additions and 28 deletions

View File

@@ -6,6 +6,13 @@
#include "music_driver.hpp"
class MusicDriver_ExtMidi: public MusicDriver {
private:
char song[MAX_PATH];
pid_t pid;
void DoPlay();
void DoStop();
public:
/* virtual */ bool CanProbe() { return true; }