Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
26
Src/Wasabi/api/syscb/callbacks/playlistcb.h
Normal file
26
Src/Wasabi/api/syscb/callbacks/playlistcb.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#ifndef NULLSOFT_AGAVE_PLAYLISTCB_H
|
||||
#define NULLSOFT_AGAVE_PLAYLISTCB_H
|
||||
|
||||
#include "../playlist/api_playlists.h"
|
||||
|
||||
#include "api/syscb/callbacks/syscbi.h"
|
||||
|
||||
|
||||
#define PLAYLISTCALLBACKI_PARENT SysCallbackI
|
||||
class PlaylistCallbackI : public PLAYLISTCALLBACKI_PARENT
|
||||
{
|
||||
public:
|
||||
virtual FOURCC syscb_getEventType() { return api_playlists::SYSCALLBACK; }
|
||||
|
||||
protected:
|
||||
// override these
|
||||
virtual int playlistcb_added( size_t index ) { return 0; }
|
||||
virtual int playlistcb_saved( size_t index ) { return 0; }
|
||||
|
||||
private:
|
||||
virtual int syscb_notify( int msg, intptr_t param1 = 0, intptr_t param2 = 0 );
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue