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