File: empty-code.c

package info (click to toggle)
wayland 1.24.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,168 kB
  • sloc: ansic: 21,548; xml: 6,858; python: 208; sh: 176; makefile: 16; cpp: 2
file content (21 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (9)
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,
};