summaryrefslogtreecommitdiff
path: root/src/config.h
blob: e41a308e2f5d1581c539dd0ffeeba01164402a3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __CONFIG_H__
#define __CONFIG_H__

#ifdef __cplusplus
extern "C" {
#endif

#define CONFIG_LASTLOADED	0
#define CONFIG_THEME		1

void getConfigValue(unsigned int value, char *buffer, int bfsz);
void setConfigValue(unsigned int value, char *ll);

#ifdef __cplusplus
}
#endif

#endif