mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 14:25:03 +02:00
- config now is more toml like
- no need to declare all fields, it implements defaults
- no yanderedev code, introspection babbyyy 😎
- desktop and config files parser semi-unification
- misc tweaks all over (mainly allocation failures handling)
13 lines
226 B
C
13 lines
226 B
C
#ifndef UIH_
|
|
#define UIH_
|
|
|
|
#include "config.h"
|
|
#include "util.h"
|
|
|
|
void setup(struct config* config);
|
|
int load(struct Vector* users, struct Vector* sessions);
|
|
void print_err(const char*);
|
|
void print_errno(const char*);
|
|
|
|
#endif
|