mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 14:25:03 +02:00
16 lines
245 B
C
16 lines
245 B
C
#ifndef LAUNCHSTATEH_
|
|
#define LAUNCHSTATEH_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
|
|
struct LaunchState {
|
|
int user_opt;
|
|
int session_opt;
|
|
};
|
|
|
|
struct LaunchState read_launch_state();
|
|
bool write_launch_state(struct LaunchState state);
|
|
|
|
#endif
|