evisum/src/bin/evisum_config.h

23 lines
406 B
C
Raw Normal View History

2020-04-14 10:24:27 -07:00
#ifndef __CONFIGURATION_H__
#define __CONFIGURATION_H__
#include "ui/ui.h"
2020-04-14 10:24:27 -07:00
2020-04-23 08:28:52 -07:00
#define CONFIG_VERSION 0x0002
2020-04-14 10:24:27 -07:00
typedef struct _Evisum_Config
{
int version;
int sort_type;
Eina_Bool sort_reverse;
int width;
int height;
2020-04-14 10:24:27 -07:00
} Evisum_Config;
void config_init(void);
void config_shutdown(void);
Evisum_Config *config_load(void);
Eina_Bool config_save(Evisum_Config *);
#endif