You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
427 B
26 lines
427 B
#ifndef SESSION_H
|
|
#define SESSION_H
|
|
|
|
#include <systemd/sd-bus.h>
|
|
#include <stdbool.h>
|
|
|
|
struct otd_session {
|
|
char *id;
|
|
char *path;
|
|
char *seat;
|
|
|
|
sd_bus *bus;
|
|
};
|
|
|
|
struct otd;
|
|
bool otd_new_session(struct otd *otd);
|
|
void otd_close_session(struct otd *otd);
|
|
|
|
int take_device(struct otd *restrict otd,
|
|
const char *restrict path,
|
|
bool *restrict paused_out);
|
|
|
|
void release_device(struct otd *otd, int fd);
|
|
|
|
#endif
|