|
LMMS
|
#include <ivstattributes.h>
Public Types | |
| typedef const char * | AttrID |
Public Member Functions | |
| virtual tresult PLUGIN_API | setInt (AttrID id, int64 value)=0 |
| virtual tresult PLUGIN_API | getInt (AttrID id, int64 &value)=0 |
| virtual tresult PLUGIN_API | setFloat (AttrID id, double value)=0 |
| virtual tresult PLUGIN_API | getFloat (AttrID id, double &value)=0 |
| virtual tresult PLUGIN_API | setString (AttrID id, const TChar *string)=0 |
| virtual tresult PLUGIN_API | getString (AttrID id, TChar *string, uint32 sizeInBytes)=0 |
| virtual tresult PLUGIN_API | setBinary (AttrID id, const void *data, uint32 sizeInBytes)=0 |
| virtual tresult PLUGIN_API | getBinary (AttrID id, const void *&data, uint32 &sizeInBytes)=0 |
| Public Member Functions inherited from Steinberg::FUnknown | |
| virtual tresult PLUGIN_API | queryInterface (const TUID _iid, void **obj)=0 |
| virtual uint32 PLUGIN_API | addRef ()=0 |
| virtual uint32 PLUGIN_API | release ()=0 |
Static Public Attributes | |
| static const FUID | iid |
| Static Public Attributes inherited from Steinberg::FUnknown | |
| static const FUID | iid |
Attribute list used in IMessage and IStreamAttributes: Vst::IAttributeList
An attribute list associates values with a key (id: some predefined keys can be found in presetAttributes).
| typedef const char* Steinberg::Vst::IAttributeList::AttrID |
|
pure virtual |
Gets binary data.
Implemented in Steinberg::Vst::HostAttributeList.
|
pure virtual |
Gets float value.
Implemented in Steinberg::Vst::HostAttributeList.
|
pure virtual |
Gets integer value.
Implemented in Steinberg::Vst::HostAttributeList.
|
pure virtual |
Gets string value (UTF16). Note that Size is in Byte, not the string Length! Do not forget to multiply the length by sizeof (TChar)!
Implemented in Steinberg::Vst::HostAttributeList.
|
pure virtual |
Sets binary data.
Implemented in Steinberg::Vst::HostAttributeList.
|
pure virtual |
Sets float value.
Implemented in Steinberg::Vst::HostAttributeList.
|
pure virtual |
Sets integer value.
Implemented in Steinberg::Vst::HostAttributeList.
|
pure virtual |
Sets string value (UTF16) (should be null-terminated!).
Implemented in Steinberg::Vst::HostAttributeList.