mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-01 22:58:40 -04:00
21 lines
338 B
C
21 lines
338 B
C
|
|
/* SCANNER TEST */
|
||
|
|
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <stdint.h>
|
||
|
|
#include "wayland-util.h"
|
||
|
|
|
||
|
|
|
||
|
|
static const struct wl_interface *empty_types[] = {
|
||
|
|
};
|
||
|
|
|
||
|
|
static const struct wl_message empty_requests[] = {
|
||
|
|
{ "empty", "", empty_types + 0 },
|
||
|
|
};
|
||
|
|
|
||
|
|
WL_EXPORT const struct wl_interface empty_interface = {
|
||
|
|
"empty", 1,
|
||
|
|
1, empty_requests,
|
||
|
|
0, NULL,
|
||
|
|
};
|
||
|
|
|