aboutsummaryrefslogtreecommitdiffstats
path: root/src/wayland-util.h
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2013-06-27 20:09:18 -0500
committerKristian Høgsberg <krh@bitplanet.net>2013-07-02 15:52:47 -0400
commitd94a8722cb29d8b897672be66ff3c9ff79eab6fe (patch)
tree4314f9c98913c36a12525062680440a336a88092 /src/wayland-util.h
parentprotocol: add no_keymap format to keymap formats (diff)
downloadwayland-d94a8722cb29d8b897672be66ff3c9ff79eab6fe.tar
wayland-d94a8722cb29d8b897672be66ff3c9ff79eab6fe.tar.gz
wayland-d94a8722cb29d8b897672be66ff3c9ff79eab6fe.tar.bz2
wayland-d94a8722cb29d8b897672be66ff3c9ff79eab6fe.tar.lz
wayland-d94a8722cb29d8b897672be66ff3c9ff79eab6fe.tar.xz
wayland-d94a8722cb29d8b897672be66ff3c9ff79eab6fe.tar.zst
wayland-d94a8722cb29d8b897672be66ff3c9ff79eab6fe.zip
server: Make wl_object and wl_resource opaque structs
With the work to add wl_resource accessors and port weston to use them, we're ready to make wl_resource and wl_object opaque structs. We keep wl_buffer in the header for EGL stacks to use, but don't expose it by default. In time we'll remove it completely, but for now it provides a transition paths for code that still uses wl_buffer. Reviewed-by: Jason Ekstrand<jason@jlekstrand.net>
Diffstat (limited to 'src/wayland-util.h')
-rw-r--r--src/wayland-util.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wayland-util.h b/src/wayland-util.h
index 119fa33..53d3282 100644
--- a/src/wayland-util.h
+++ b/src/wayland-util.h
@@ -61,12 +61,6 @@ struct wl_interface {
const struct wl_message *events;
};
-struct wl_object {
- const struct wl_interface *interface;
- const void *implementation;
- uint32_t id;
-};
-
/**
* wl_list - linked list
*