File: wormulon.h

package info (click to toggle)
xfce4-netload-plugin 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,656 kB
  • sloc: sh: 4,348; ansic: 2,598; makefile: 111
file content (30 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/******************************************************************************
 *
 * wormulon.h
 *
 * application specific defines. You should never need to tune anything here
 *
 *****************************************************************************/

#ifndef _WORMULON_H

#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif

#ifdef __linux__
#define PATH_NET_DEV "/proc/net/dev"
#endif

/* define possible options */
#define OPT_NONE		0x0000
#define OPT_MRTG		0x0001
#define OPT_FULLMRTG	0x0002
#ifdef CUSTOM_MODE
#define OPT_CUSTOM		0x0004
#endif

#endif