summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-09-30 19:17:53 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-09-30 19:17:53 -0400
commit0c5bd20930270881b10c1ddd75c774bb233bf1e2 (patch)
tree58f24061d527dfb0d4d1a294a9e81440e34119db
parentb59ef460cc1fa273bd53e8f1cb7607672dab3c9a (diff)
downloadjack1-0c5bd20930270881b10c1ddd75c774bb233bf1e2.tar.gz
add jack_client_t* to metadata calls that need to contact the server to initiate a property change callback
-rw-r--r--libjack/metadata.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libjack/metadata.c b/libjack/metadata.c
index 290ae83..2b22d90 100644
--- a/libjack/metadata.c
+++ b/libjack/metadata.c
@@ -92,7 +92,8 @@ make_key_dbt (DBT* dbt, jack_uuid_t subject, const char* key)
int
-jack_set_property (jack_uuid_t subject,
+jack_set_property (jack_client_t* client,
+ jack_uuid_t subject,
const char* key,
const char* value,
const char* type)
@@ -381,7 +382,7 @@ int jack_set_property_change_callback (jack_client_t* client,
}
int
-jack_remove_property (jack_uuid_t subject, const char* key)
+jack_remove_property (jack_client_t* client, jack_uuid_t subject, const char* key)
{
DBT d_key;
int ret;
@@ -399,7 +400,7 @@ jack_remove_property (jack_uuid_t subject, const char* key)
}
int
-jack_remove_properties (jack_uuid_t subject)
+jack_remove_properties (jack_client_t* client, jack_uuid_t subject)
{
DBT key;
DBT data;
@@ -460,7 +461,7 @@ jack_remove_properties (jack_uuid_t subject)
}
int
-jack_remove_all_properties ()
+jack_remove_all_properties (jack_client_t* client)
{
int ret;