From ca196ea0ecae334a271d937cf1a4080bcecea721 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 30 Sep 2013 19:17:38 -0400 Subject: [PATCH] add jack_client_t* to metadata calls that need to contact the server to initiate a property change callback --- metadata.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/metadata.h b/metadata.h index 26122f5..8de3324 100644 --- a/metadata.h +++ b/metadata.h @@ -70,7 +70,8 @@ typedef struct { * @return 0 on success. */ int -jack_set_property(jack_uuid_t subject, +jack_set_property(jack_client_t*, + jack_uuid_t subject, const char* key, const char* value, const char* type); @@ -132,10 +133,9 @@ int jack_get_all_properties (jack_description_t** descs); -int jack_remove_property (jack_uuid_t subject, const char* key); -int jack_remove_properties (jack_uuid_t subject); - -int jack_remove_all_properties (void); +int jack_remove_property (jack_client_t*, jack_uuid_t subject, const char* key); +int jack_remove_properties (jack_client_t*, jack_uuid_t subject); +int jack_remove_all_properties (jack_client_t*); typedef enum { PropertyCreated,