blob: 2a0db3c860c3f50761ac60054b716ceb077bba76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef OPTIONS_H
#define OPTIONS_H
/* The default name for conf, log, pid files */
#define DEFAULTNAME "hopm"
/* file extensions */
/* config */
#define CONFEXT "conf"
/* log file */
#define LOGEXT "log"
#endif /* OPTIONS_H */
|