blob: 13df852f3c151ec9788310a72af32c594700b965 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef L2SU_MAIN_H_INCLUDED
#define L2SU_MAIN_H_INCLUDED
#include "command.h"
#include "instance.h"
struct l2_user_paths {
const char *config;
const char *data;
};
struct {
struct l2_user_paths paths;
struct l2_instance *instances;
} l2_state;
#endif /* include guard */
|