repo.or.cz
/
dockapps.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
wmclockmon: properly fix allocating and freeing of `command`, `light_color` and the...
[dockapps.git]
/
wmclockmon
/
wmclockmon-config
/
variables.h
blob
5c0117948b719e70fb25831c5b4cc53399cb41eb
1
/*
2
* main variables for inclusion
3
*/
4
5
#ifndef VARIABLES_H
6
#define VARIABLES_H
7
8
#include
"defines.h"
9
10
extern
int
backlight
;
11
extern
int
switch_authorized
;
12
extern
int
h12
;
13
extern
int
time_mode
;
14
extern
int
use_locale
;
15
extern
int
showcal
;
16
extern
int
calalrms
;
17
extern
char
*
style_name
;
18
extern
char
*
style_dir
;
19
extern
char
*
config_file
;
20
extern
char
*
light_color
;
21
extern
char
*
command
;
22
extern
char
*
msgcmd
;
23
extern
Alarm
*
alarms
;
24
25
#endif