aboutsummaryrefslogtreecommitdiffstats
path: root/ext/persist.lv2/persist.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/persist.lv2/persist.h')
-rw-r--r--ext/persist.lv2/persist.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/ext/persist.lv2/persist.h b/ext/persist.lv2/persist.h
index e7c1078..f0c0907 100644
--- a/ext/persist.lv2/persist.h
+++ b/ext/persist.lv2/persist.h
@@ -70,7 +70,6 @@ typedef enum {
/**
A host-provided function to store a property.
@param callback_data Must be the callback_data passed to LV2_Persist.save().
- @param subject The subject of this property (URI), or 0 for plugin instance.
@param key The key (predicate) to store @a value under (URI mapped integer).
@param value Pointer to the value (object) to be stored.
@param size The size of the data at @a value in bytes.
@@ -82,7 +81,7 @@ typedef enum {
is called repeatedly by the plugin within LV2_Persist.save() to store all
the statements that describe its current state.
- The host MAY fail to store a statement if the type is not understood and is
+ The host MAY fail to store a property if the type is not understood and is
not LV2_PERSIST_IS_POD and/or LV2_PERSIST_IS_PORTABLE. Implementations are
encouraged to use POD and portable values (e.g. string literals) wherever
possible, and use common types (e.g. types from
@@ -97,7 +96,6 @@ typedef enum {
*/
typedef int (*LV2_Persist_Store_Function)(
void* callback_data,
- uint32_t subject,
uint32_t key,
const void* value,
size_t size,
@@ -107,7 +105,6 @@ typedef int (*LV2_Persist_Store_Function)(
/**
A host-provided function to retrieve a property.
@param callback_data Must be the callback_data passed to LV2_Persist.restore().
- @param subject The subject of the property (URI), or 0 for plugin instance.
@param key The key (predicate) of the property to retrieve (URI).
@param size (Output) If non-NULL, set to the size of the restored value.
@param type (Output) If non-NULL, set to the type of the restored value.
@@ -129,7 +126,6 @@ typedef int (*LV2_Persist_Store_Function)(
*/
typedef const void* (*LV2_Persist_Retrieve_Function)(
void* callback_data,
- uint32_t subject,
uint32_t key,
size_t* size,
uint32_t* type,