pw_device_proxy -> pw_device

This commit is contained in:
Wim Taymans 2019-12-11 15:00:41 +01:00
parent a8f1d756c3
commit f1eb5f6046
13 changed files with 79 additions and 79 deletions

View file

@ -551,8 +551,8 @@ static void device_event_info(void *data, const struct pw_device_info *info)
global_event_info(data, info);
}
static const struct pw_device_proxy_events device_events = {
PW_VERSION_DEVICE_PROXY_EVENTS,
static const struct pw_device_events device_events = {
PW_VERSION_DEVICE_EVENTS,
.info = device_event_info
};
@ -643,7 +643,7 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
info_destroy = (pw_destroy_t)pw_device_info_free;
info_update = (info_update_t)pw_device_info_update;
draw = draw_device;
client_version = PW_VERSION_DEVICE_PROXY;
client_version = PW_VERSION_DEVICE;
break;
case PW_TYPE_INTERFACE_Factory:
events = &factory_events;