mirror of
https://github.com/joel16/VITAlbum.git
synced 2024-11-23 03:29:54 +00:00
18 lines
254 B
C++
18 lines
254 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
typedef struct {
|
|
int sort = 0;
|
|
bool image_filename = false;
|
|
std::string device;
|
|
std::string cwd;
|
|
} config_t;
|
|
|
|
extern config_t cfg;
|
|
|
|
namespace Config {
|
|
int Save(config_t &config);
|
|
int Load(void);
|
|
}
|