PipeWire  0.3.27
client.h File Reference
Include dependency graph for client.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  pw_client_info
 The client information. More...
 
struct  pw_client_events
 Client events. More...
 
struct  pw_client_methods
 Client methods. More...
 

Macros

#define PW_TYPE_INTERFACE_Client   PW_TYPE_INFO_INTERFACE_BASE "Client"
 
#define PW_VERSION_CLIENT   3
 
#define PW_ID_CLIENT   1
 
#define PW_CLIENT_CHANGE_MASK_PROPS   (1 << 0)
 
#define PW_CLIENT_CHANGE_MASK_ALL   ((1 << 1)-1)
 
#define PW_CLIENT_EVENT_INFO   0
 
#define PW_CLIENT_EVENT_PERMISSIONS   1
 
#define PW_CLIENT_EVENT_NUM   2
 
#define PW_VERSION_CLIENT_EVENTS   0
 
#define PW_CLIENT_METHOD_ADD_LISTENER   0
 
#define PW_CLIENT_METHOD_ERROR   1
 
#define PW_CLIENT_METHOD_UPDATE_PROPERTIES   2
 
#define PW_CLIENT_METHOD_GET_PERMISSIONS   3
 
#define PW_CLIENT_METHOD_UPDATE_PERMISSIONS   4
 
#define PW_CLIENT_METHOD_NUM   5
 
#define PW_VERSION_CLIENT_METHODS   0
 
#define pw_client_method(o, method, version, ...)
 
#define pw_client_add_listener(c, ...)   pw_client_method(c,add_listener,0,__VA_ARGS__)
 
#define pw_client_error(c, ...)   pw_client_method(c,error,0,__VA_ARGS__)
 
#define pw_client_update_properties(c, ...)   pw_client_method(c,update_properties,0,__VA_ARGS__)
 
#define pw_client_get_permissions(c, ...)   pw_client_method(c,get_permissions,0,__VA_ARGS__)
 
#define pw_client_update_permissions(c, ...)   pw_client_method(c,update_permissions,0,__VA_ARGS__)
 

Macro Definition Documentation

#define pw_client_add_listener (   c,
  ... 
)    pw_client_method(c,add_listener,0,__VA_ARGS__)
#define PW_CLIENT_CHANGE_MASK_ALL   ((1 << 1)-1)
#define PW_CLIENT_CHANGE_MASK_PROPS   (1 << 0)

Referenced by pw_client_info_update().

#define pw_client_error (   c,
  ... 
)    pw_client_method(c,error,0,__VA_ARGS__)
#define PW_CLIENT_EVENT_INFO   0
#define PW_CLIENT_EVENT_NUM   2
#define PW_CLIENT_EVENT_PERMISSIONS   1
#define pw_client_get_permissions (   c,
  ... 
)    pw_client_method(c,get_permissions,0,__VA_ARGS__)
#define pw_client_method (   o,
  method,
  version,
  ... 
)
Value:
({ \
int _res = -ENOTSUP; \
spa_interface_call_res((struct spa_interface*)o, \
struct pw_client_methods, _res, \
method, version, ##__VA_ARGS__); \
_res; \
})
Client methods.
Definition: client.h:103
#define PW_CLIENT_METHOD_ADD_LISTENER   0
#define PW_CLIENT_METHOD_ERROR   1
#define PW_CLIENT_METHOD_GET_PERMISSIONS   3
#define PW_CLIENT_METHOD_NUM   5
#define PW_CLIENT_METHOD_UPDATE_PERMISSIONS   4
#define PW_CLIENT_METHOD_UPDATE_PROPERTIES   2
#define pw_client_update_permissions (   c,
  ... 
)    pw_client_method(c,update_permissions,0,__VA_ARGS__)
#define pw_client_update_properties (   c,
  ... 
)    pw_client_method(c,update_properties,0,__VA_ARGS__)
#define PW_ID_CLIENT   1
#define PW_TYPE_INTERFACE_Client   PW_TYPE_INFO_INTERFACE_BASE "Client"

Referenced by pw_impl_client_register().

#define PW_VERSION_CLIENT   3

Referenced by pw_impl_client_register().

#define PW_VERSION_CLIENT_EVENTS   0
#define PW_VERSION_CLIENT_METHODS   0