summaryrefslogtreecommitdiffstats
path: root/wayland.h
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-12-05 10:38:42 -0500
committerKristian Høgsberg <krh@redhat.com>2008-12-05 10:38:42 -0500
commit87e0a384da42dea76f548a82f03899cf6ca915fc (patch)
tree4c8cdb9c47fb59d247fbd9607344bcda81775fd6 /wayland.h
parentd4de54efe73024da52949528ab265ace83da26b8 (diff)
downloadwayland-87e0a384da42dea76f548a82f03899cf6ca915fc.tar.gz
wayland-87e0a384da42dea76f548a82f03899cf6ca915fc.tar.xz
wayland-87e0a384da42dea76f548a82f03899cf6ca915fc.zip
Use type strings for method and event signatures.
Diffstat (limited to 'wayland.h')
-rw-r--r--wayland.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/wayland.h b/wayland.h
index f61bdd9..99a6ca5 100644
--- a/wayland.h
+++ b/wayland.h
@@ -74,14 +74,13 @@ struct wl_argument {
struct wl_method {
const char *name;
void *func;
- int argument_count;
- const struct wl_argument *arguments;
+ const char *signature;
+ const void **types;
};
struct wl_event {
const char *name;
- int argument_count;
- const struct wl_argument *arguments;
+ const char *signature;
};
struct wl_interface {