empty-code.c 359 B

123456789101112131415161718192021
  1. /* SCANNER TEST */
  2. #include <stdbool.h>
  3. #include <stdlib.h>
  4. #include <stdint.h>
  5. #include "wayland-util.h"
  6. static const struct wl_interface *empty_types[] = {
  7. };
  8. static const struct wl_message empty_requests[] = {
  9. { "empty", "", empty_types + 0 },
  10. };
  11. WL_EXPORT const struct wl_interface empty_interface = {
  12. "empty", 1,
  13. 1, empty_requests,
  14. 0, NULL,
  15. };