mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
pw_client -> pw_impl_client
This commit is contained in:
parent
d70a47b7fe
commit
95688939bf
40 changed files with 236 additions and 236 deletions
|
|
@ -33,7 +33,7 @@ do { \
|
|||
|
||||
static void test_abi(void)
|
||||
{
|
||||
struct pw_client_events ev;
|
||||
struct pw_impl_client_events ev;
|
||||
struct {
|
||||
uint32_t version;
|
||||
void (*destroy) (void *data);
|
||||
|
|
@ -43,7 +43,7 @@ static void test_abi(void)
|
|||
void (*resource_added) (void *data, struct pw_resource *resource);
|
||||
void (*resource_removed) (void *data, struct pw_resource *resource);
|
||||
void (*busy_changed) (void *data, bool busy);
|
||||
} test = { PW_VERSION_CLIENT_EVENTS, NULL };
|
||||
} test = { PW_VERSION_IMPL_CLIENT_EVENTS, NULL };
|
||||
|
||||
TEST_FUNC(ev, test, destroy);
|
||||
TEST_FUNC(ev, test, free);
|
||||
|
|
@ -53,7 +53,7 @@ static void test_abi(void)
|
|||
TEST_FUNC(ev, test, resource_removed);
|
||||
TEST_FUNC(ev, test, busy_changed);
|
||||
|
||||
spa_assert(PW_VERSION_CLIENT_EVENTS == 0);
|
||||
spa_assert(PW_VERSION_IMPL_CLIENT_EVENTS == 0);
|
||||
spa_assert(sizeof(ev) == sizeof(test));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ static void test_abi(void)
|
|||
void (*destroy) (void *data);
|
||||
void (*free) (void *data);
|
||||
void (*info_changed) (void *data, const struct pw_core_info *info);
|
||||
void (*check_access) (void *data, struct pw_client *client);
|
||||
void (*check_access) (void *data, struct pw_impl_client *client);
|
||||
void (*global_added) (void *data, struct pw_global *global);
|
||||
void (*global_removed) (void *data, struct pw_global *global);
|
||||
} test = { PW_VERSION_CONTEXT_EVENTS, NULL };
|
||||
|
|
@ -67,7 +67,7 @@ static void context_info_changed_error(void *data, const struct pw_core_info *in
|
|||
{
|
||||
spa_assert_not_reached();
|
||||
}
|
||||
static void context_check_access_error(void *data, struct pw_client *client)
|
||||
static void context_check_access_error(void *data, struct pw_impl_client *client)
|
||||
{
|
||||
spa_assert_not_reached();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue