Rev 57 | Go to most recent revision | Details | 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 |
||
5 | * |
||
6 | * inotify cron system |
||
7 | * |
||
8 | * Copyright (C) 2006 Lukas Jelinek, <lukas@aiken.cz> |
||
9 | * |
||
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). |
||
13 | * |
||
14 | */ |
||
15 | |||
16 | |||
17 | #ifndef _INCRON_H_ |
||
18 | #define _INCRON_H_ |
||
19 | |||
20 | /// Common application name |
||
21 | #define INCRON_NAME "incron" |
||
22 | |||
23 | /// Daemon name |
||
24 | #define INCRON_DAEMON_NAME "incrond" |
||
25 | |||
26 | /// Table manipulator name |
||
27 | #define INCRON_TAB_NAME "incrontab" |
||
28 | |||
29 | /// Application version (release) |
||
30 | #define INCRON_VERSION "0.3.0" |
||
31 | |||
32 | /// Address for sending bugs |
||
33 | #define INCRON_BUG_ADDRESS "<bugs@aiken.cz>" |
||
34 | |||
35 | |||
36 | #endif //_INCRON_H_ |