diff options
| author | 2023-12-24 04:26:00 -0600 | |
|---|---|---|
| committer | 2023-12-24 04:26:00 -0600 | |
| commit | 20d9fc5b5356a1054cb104ba6651b77184abf0db (patch) | |
| tree | 5f115d8051dad73069d3a632a6f2c260cf7efdac /src/instance.h | |
initial commit
Diffstat (limited to 'src/instance.h')
| -rw-r--r-- | src/instance.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/instance.h b/src/instance.h new file mode 100644 index 0000000..b0be665 --- /dev/null +++ b/src/instance.h @@ -0,0 +1,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 */ |
