1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/* SCANNER TEST */
#ifndef EMPTY_SERVER_PROTOCOL_H
#define EMPTY_SERVER_PROTOCOL_H
#include <stdint.h>
#include <stddef.h>
#include "wayland-server.h"
#ifdef __cplusplus
extern "C" {
#endif
struct wl_client;
struct wl_resource;
/**
* @page page_empty The empty protocol
* @section page_ifaces_empty Interfaces
* - @subpage page_iface_empty -
*/
struct empty;
#ifndef EMPTY_INTERFACE
#define EMPTY_INTERFACE
/**
* @page page_iface_empty empty
* @section page_iface_empty_api API
* See @ref iface_empty.
*/
/**
* @defgroup iface_empty The empty interface
*/
extern const struct wl_interface empty_interface;
#endif
/**
* @ingroup iface_empty
* @struct empty_interface
*/
struct empty_interface {
/**
*/
void (*empty)(struct wl_client *client,
struct wl_resource *resource);
};
/**
* @ingroup iface_empty
*/
#define EMPTY_EMPTY_SINCE_VERSION 1
#ifdef __cplusplus
}
#endif
#endif
|