wmclockmon: fix global variables causing linkage failure
[dockapps.git] / wmclockmon / wmclockmon-config / defines.h
blobbb122b0d3365b4d70e5b88d8f2d4c8db93ed6d91
1 /*
2 * Constants and types definitions
3 */
5 #ifndef DEFINES_H
6 #define DEFINES_H
8 #define DEFAULT_CFGFILE ".wmclockmonrc"
10 #define MAXSTRLEN 1024
12 #define WIN_WIDTH 420
13 #define WIN_HEIGHT 420
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;
24 #ifndef TRUE
25 # define TRUE 1
26 # define FALSE 0
27 #endif
30 #endif