mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-04 23:08:42 +02:00
18 lines
313 B
C
18 lines
313 B
C
#ifndef LAUNCHSTATEH_
|
|
#define LAUNCHSTATEH_
|
|
|
|
#include <stdbool.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include "macros.h"
|
|
|
|
struct LaunchState {
|
|
char* NNULLABLE username;
|
|
char* NNULLABLE session_opt;
|
|
};
|
|
|
|
int read_launch_state(struct LaunchState* NNULLABLE state);
|
|
bool write_launch_state(struct LaunchState state);
|
|
|
|
#endif
|