aboutsummaryrefslogtreecommitdiffstats
path: root/tests/data/empty-code.c
blob: 67382d20da7e3b0eb8a7abdf0228e92a8c0fa2ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SCANNER TEST */

#include <stdbool.h>
#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,
};