Initial community commit

This commit is contained in:
Jef
2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit 20d28e80a5
16810 changed files with 4640254 additions and 2 deletions

View File

@ -0,0 +1,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