Rev 102 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
55 | luk | 1 | |
2 | /// inotify cron basic definition file |
||
3 | /** |
||
4 | * \file incron.h |
||
102 | luk | 5 | * |
55 | luk | 6 | * inotify cron system |
102 | luk | 7 | * |
8 | * Copyright (C) 2006, 2007, 2008, 2009 Lukas Jelinek, <lukas@aiken.cz> |
||
9 | * |
||
55 | luk | 10 | * This program is free software; you can use it, redistribute |
11 | * it and/or modify it under the terms of the GNU General Public |
||
12 | * License, version 2 (see LICENSE-GPL). |
||
102 | luk | 13 | * |
55 | luk | 14 | */ |
15 | |||
102 | luk | 16 | |
55 | luk | 17 | #ifndef _INCRON_H_ |
18 | #define _INCRON_H_ |
||
19 | |||
20 | /// Common application name |
||
21 | #define INCRON_NAME "incron" |
||
22 | |||
23 | /// Daemon name |
||
69 | luk | 24 | #define INCROND_NAME "incrond" |
55 | luk | 25 | |
26 | /// Table manipulator name |
||
69 | luk | 27 | #define INCRONTAB_NAME "incrontab" |
55 | luk | 28 | |
29 | /// Application version (release) |
||
110 | luk | 30 | #define INCRON_VERSION "0.5.10" |
55 | luk | 31 | |
32 | /// Address for sending bugs |
||
33 | #define INCRON_BUG_ADDRESS "<bugs@aiken.cz>" |
||
34 | |||
69 | luk | 35 | /// Default configuration file |
36 | #define INCRON_CONFIG "/etc/incron.conf" |
||
55 | luk | 37 | |
69 | luk | 38 | |
55 | luk | 39 | #endif //_INCRON_H_ |