Moved headers to the correct place.

This commit is contained in:
Scott Anderson 2017-05-01 15:33:42 +12:00
parent aca13320b3
commit 95a553dc51
6 changed files with 0 additions and 160 deletions

View file

@ -0,0 +1,25 @@
#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