15 lines
326 B
C++
15 lines
326 B
C++
#include "api_playlist_generator.h"
|
|
|
|
class PlaylistGeneratorAPI : public api_playlist_generator
|
|
{
|
|
public:
|
|
// Exposed API functions
|
|
int GeneratePlaylist(HWND parent, const itemRecordListW *selectedSeedRecordList);
|
|
|
|
// Helper functions
|
|
int AddSeedTracks(const itemRecordListW *recordList);
|
|
|
|
protected:
|
|
RECVS_DISPATCH;
|
|
};
|