Fix some header includes detected by clangd

There were some missing headers like <stddef.h> for `NULL`, <wayland-util.h>
for `wl_link` and <stdbool.h> for `true`/`false`.

Also this commit fixes that `labwc.h` and `ime.h` included each other.
This commit is contained in:
Hiroaki Yamamoto 2024-04-22 04:58:57 +09:00 committed by GitHub
parent d67345564e
commit d64e3915a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 14 additions and 3 deletions

View file

@ -2,6 +2,9 @@
#ifndef LABWC_WINDOW_RULES_H
#define LABWC_WINDOW_RULES_H
#include <stdbool.h>
#include <wayland-util.h>
enum window_rule_event {
LAB_WINDOW_RULE_EVENT_ON_FIRST_MAP = 0,
};