mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
|
#pragma once
|
||
|
|
||
|
#include <api/script/objcontroller.h>
|
||
|
#include <api/script/objects/rootobj.h>
|
||
|
|
||
|
class PlaylistsScriptController : public ScriptObjectControllerI
|
||
|
{
|
||
|
public:
|
||
|
const wchar_t *getClassName();
|
||
|
const wchar_t *getAncestorClassName();
|
||
|
ScriptObjectController *getAncestorController();
|
||
|
int getNumFunctions();
|
||
|
const function_descriptor_struct *getExportedFunctions();
|
||
|
GUID getClassGuid();
|
||
|
|
||
|
ScriptObject *instantiate();
|
||
|
void destroy( ScriptObject *o );
|
||
|
|
||
|
void *encapsulate( ScriptObject *o );
|
||
|
void deencapsulate( void *o );
|
||
|
|
||
|
int getInstantiable();
|
||
|
int getReferenceable();
|
||
|
|
||
|
private:
|
||
|
static function_descriptor_struct exportedFunction[];
|
||
|
};
|
||
|
|
||
|
class SPlaylists : public RootObjectInstance
|
||
|
{
|
||
|
public:
|
||
|
SPlaylists();
|
||
|
|
||
|
static scriptVar script_vcpu_GetEnumerator( SCRIPT_FUNCTION_PARAMS, ScriptObject *o );
|
||
|
static scriptVar script_vcpu_OpenPlaylist( SCRIPT_FUNCTION_PARAMS, ScriptObject *o, scriptVar scriptPlaylistGUID );
|
||
|
static scriptVar script_vcpu_SavePlaylist( SCRIPT_FUNCTION_PARAMS, ScriptObject *o, scriptVar scriptPlaylistGUID, scriptVar scriptPlaylist );
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|