PlaylistsCB.h 381 B

12345678910111213141516
  1. #ifndef NULLSOFT_ML_PLAYLISTS_PLAYLISTSCB_H
  2. #define NULLSOFT_ML_PLAYLISTS_PLAYLISTSCB_H
  3. #include <api/syscb/callbacks/syscb.h>
  4. #include "../playlist/api_playlists.h"
  5. class PlaylistsCB : public SysCallback
  6. {
  7. public:
  8. FOURCC getEventType() { return api_playlists::SYSCALLBACK; }
  9. int notify(int msg, intptr_t param1 = 0, intptr_t param2 = 0);
  10. protected:
  11. RECVS_DISPATCH;
  12. };
  13. #endif