mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-12 13:29:55 -05:00
Use type strings for method and event signatures.
This commit is contained in:
parent
d4de54efe7
commit
87e0a384da
2 changed files with 56 additions and 125 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue