~ubuntu-branches/ubuntu/trusty/wayland/trusty

« back to all changes in this revision

Viewing changes to src/wayland-client.h

  • Committer: Package Import Robot
  • Author(s): Hector Oron, Timo Aaltonen, Hector Oron
  • Date: 2013-10-11 11:23:38 UTC
  • mfrom: (1.1.15) (0.4.2 sid)
  • Revision ID: package-import@ubuntu.com-20131011112338-2jg0z6ncpm9qnots
Tags: 1.3.0-1
[ Timo Aaltonen ]
* control: Bump the libwayland0 C/R to (<< 1.1.0) so that it covers
  the ubuntu version too, and add it to -cursor.

[ Hector Oron ]
* New upstream stable release (1.3.0).
* Add myself to Uploaders.
* Switch to Debian source format 3.0 quilt.
* d/libwayland-dev.install:
  - install wayland documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
void wl_event_queue_destroy(struct wl_event_queue *queue);
123
123
 
124
124
void wl_proxy_marshal(struct wl_proxy *p, uint32_t opcode, ...);
 
125
void wl_proxy_marshal_array(struct wl_proxy *p, uint32_t opcode,
 
126
                            union wl_argument *args);
125
127
struct wl_proxy *wl_proxy_create(struct wl_proxy *factory,
126
128
                                 const struct wl_interface *interface);
127
129
 
128
130
void wl_proxy_destroy(struct wl_proxy *proxy);
129
131
int wl_proxy_add_listener(struct wl_proxy *proxy,
130
132
                          void (**implementation)(void), void *data);
 
133
const void *wl_proxy_get_listener(struct wl_proxy *proxy);
 
134
int wl_proxy_add_dispatcher(struct wl_proxy *proxy,
 
135
                            wl_dispatcher_func_t dispatcher_func,
 
136
                            const void * dispatcher_data, void *data);
131
137
void wl_proxy_set_user_data(struct wl_proxy *proxy, void *user_data);
132
138
void *wl_proxy_get_user_data(struct wl_proxy *proxy);
133
139
uint32_t wl_proxy_get_id(struct wl_proxy *proxy);
152
158
int wl_display_roundtrip(struct wl_display *display);
153
159
struct wl_event_queue *wl_display_create_queue(struct wl_display *display);
154
160
 
 
161
int wl_display_prepare_read_queue(struct wl_display *display,
 
162
                                  struct wl_event_queue *queue);
 
163
int wl_display_prepare_read(struct wl_display *display);
 
164
void wl_display_cancel_read(struct wl_display *display);
 
165
int wl_display_read_events(struct wl_display *display);
 
166
 
155
167
void wl_log_set_handler_client(wl_log_func_t handler);
156
168
 
157
169
#ifdef  __cplusplus