mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 22:38:41 +02:00
15 lines
216 B
C
15 lines
216 B
C
#include <sys/types.h>
|
|
|
|
struct session {
|
|
const char *type;
|
|
char *name;
|
|
char *path;
|
|
};
|
|
|
|
struct sessions_list {
|
|
u_int16_t length;
|
|
struct session *sessions;
|
|
};
|
|
|
|
struct sessions_list *get_avaliable_sessions();
|