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
Add missing libraries to examples' Makefiles
[dockapps.git]
/
wmclockmon
/
wmclockmon-config
/
defines.h
blob
bb122b0d3365b4d70e5b88d8f2d4c8db93ed6d91
1
/*
2
* Constants and types definitions
3
*/
4
5
#ifndef DEFINES_H
6
#define DEFINES_H
7
8
#define DEFAULT_CFGFILE
".wmclockmonrc"
9
10
#define MAXSTRLEN 1024
11
12
#define WIN_WIDTH 420
13
#define WIN_HEIGHT 420
14
15
typedef
struct
Alarm
{
16
char
*
entry
;
17
char
*
time
;
18
char
*
date
;
19
char
*
msg
;
20
int
on
;
21
struct
Alarm
*
next
;
22
}
Alarm
;
23
24
#ifndef TRUE
25
# define TRUE 1
26
# define FALSE 0
27
#endif
28
29
30
#endif