lidm/include/launch_state.h
2025-06-29 11:51:42 +05:00

17 lines
267 B
C

#ifndef LAUNCHSTATEH_
#define LAUNCHSTATEH_
#include <stdbool.h>
#include <stdio.h>
#include <sys/stat.h>
struct LaunchState {
int user_opt;
int session_opt;
};
struct LaunchState read_launch_state();
bool write_launch_state(struct LaunchState state);
#endif