Browse Source

add jack_client_t* to metadata calls that need to contact the server to initiate a property change callback

tags/0.124.0
Paul Davis 11 years ago
parent
commit
ca196ea0ec
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      metadata.h

+ 5
- 5
metadata.h View File

@@ -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,


Loading…
Cancel
Save