mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-04 23:08:42 +02:00
13 lines
204 B
C
13 lines
204 B
C
#ifndef _LAUNCHSTATEH_
|
|
#define _LAUNCHSTATEH_
|
|
|
|
struct LaunchState {
|
|
int user_opt;
|
|
int session_opt;
|
|
};
|
|
|
|
struct LaunchState read_launch_state();
|
|
bool write_launch_state(struct LaunchState state);
|
|
|
|
#endif
|