diff options
| author | Kristian Høgsberg <krh@bitplanet.net> | 2011-08-19 13:40:28 -0400 |
|---|---|---|
| committer | Kristian Høgsberg <krh@bitplanet.net> | 2011-08-27 12:06:11 -0400 |
| commit | a7c682432893d2e5e534953ef64193f1dd4bcef4 (patch) | |
| tree | 701ea02bb0b010a66c13f314c499f771d6efce24 /src/wayland-client.h | |
| parent | server: Assign global id as part of wl_display_add_global() (diff) | |
| download | wayland-a7c682432893d2e5e534953ef64193f1dd4bcef4.tar wayland-a7c682432893d2e5e534953ef64193f1dd4bcef4.tar.gz wayland-a7c682432893d2e5e534953ef64193f1dd4bcef4.tar.bz2 wayland-a7c682432893d2e5e534953ef64193f1dd4bcef4.tar.lz wayland-a7c682432893d2e5e534953ef64193f1dd4bcef4.tar.xz wayland-a7c682432893d2e5e534953ef64193f1dd4bcef4.tar.zst wayland-a7c682432893d2e5e534953ef64193f1dd4bcef4.zip | |
server: Hand code all wl_display client stubs
Diffstat (limited to 'src/wayland-client.h')
| -rw-r--r-- | src/wayland-client.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wayland-client.h b/src/wayland-client.h index b00b0ae..dc5aa5f 100644 --- a/src/wayland-client.h +++ b/src/wayland-client.h @@ -44,6 +44,10 @@ int wl_proxy_add_listener(struct wl_proxy *proxy, void wl_proxy_set_user_data(struct wl_proxy *proxy, void *user_data); void *wl_proxy_get_user_data(struct wl_proxy *proxy); +void wl_display_bind(struct wl_display *display, + uint32_t id, const char *interface, uint32_t version); +struct wl_callback *wl_display_sync(struct wl_display *display); + #include "wayland-client-protocol.h" #define WL_DISPLAY_READABLE 0x01 |
