blob: b0be6657fa483d8d26d8ef9d8c75af27c0eee4b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef L2SU_INSTANCE_H_INCLUDED
#define L2SU_INSTANCE_H_INCLUDED
#include "uuid/uuid.h"
struct l2_instance {
uuid_t uuid;
char *name;
char *path;
};
void l2_instance_load(void);
void l2_instance_save(void);
#endif /* include guard */
|