O2 2.0
A communication protocol for interactive music and media applications.
properties.h
1/* properties.h -- interface to properties.c functions */
2
3// the only function without a public interface in o2.h is this:
4void o2_services_list_finish(void);
5// needed by o2.c to clean up before exit
6
7// change the property value for spp, the local provider of service
8O2err o2_service_provider_set_property(Service_provider *spp,
9 const char *service, const char *attr, const char *value);
10
11// set properties of this service to a new value
12O2err o2_set_service_properties(Service_provider *spp, const char *service,
13 char *properties);
Definition: services.h:9
O2err
return values used generally by O2 functions
Definition: o2.h:329