seatd/include/drm.h
Kenny Levinsen 8f8c9558e6 drm: Make dev_is_drm local to logind backend
This function is only used for logind, which is Linux-specific, but the
presence in common/drm.c suggested that it had to be portable.

Move it to the logind backend for now.
2022-03-29 10:54:27 +02:00

8 lines
143 B
C

#ifndef _SEATD_DRM_H
#define _SEATD_DRM_H
int drm_set_master(int fd);
int drm_drop_master(int fd);
int path_is_drm(const char *path);
#endif