Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
40
Src/playlist/SPlaylists.h
Normal file
40
Src/playlist/SPlaylists.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
#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:
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue