diff options
author | Simon Ser <contact@emersion.fr> | 2021-03-26 10:05:12 +0100 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2021-03-26 11:11:26 +0100 |
commit | 9a7824b7c3ff5c957632671e91454fc84fbcdda8 (patch) | |
tree | cf103f2f5591943b61cb330e129e20de546477ea /include/libseat.h | |
parent | 5ad91ae9dad205331ede6579b2b24b53e02a6287 (diff) |
Add no-op session
This is useful for headless testing, for instance with VKMS:
modprobe vkms
export WLR_DRM_DEVICES=/dev/dri/card1
export WLR_BACKENDS=drm
export LIBSEAT_BACKEND=noop
sway
We don't need any of the VT handling in this case.
Diffstat (limited to 'include/libseat.h')
-rw-r--r-- | include/libseat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libseat.h b/include/libseat.h index 5375cd6..82098ea 100644 --- a/include/libseat.h +++ b/include/libseat.h @@ -1,6 +1,8 @@ #ifndef _LIBSEAT_H #define _LIBSEAT_H +#include <stdarg.h> + /* * An opaque struct containing an opened seat, created by libseat_open_seat and * destroyed by libseat_close_seat. |