Use type strings for method and event signatures.

This commit is contained in:
Kristian Høgsberg 2008-12-05 10:38:42 -05:00
parent d4de54efe7
commit 87e0a384da
2 changed files with 56 additions and 125 deletions

View file

@ -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 {