Top/ps process monitor
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
403 B

#ifndef __CONFIGURATION_H__
#define __CONFIGURATION_H__
#include "ui.h"
#define CONFIG_VERSION 0x0002
typedef struct _Evisum_Config
{
int version;
int sort_type;
Eina_Bool sort_reverse;
int width;
int height;
} Evisum_Config;
void config_init(void);
void config_shutdown(void);
Evisum_Config *config_load(void);
Eina_Bool config_save(Evisum_Config *);
#endif