Files
lcdproc/clients/lcdvc/lcdvc.h
T

27 lines
429 B
C
Raw Normal View History

2006-04-24 20:05:35 +00:00
#ifndef LCDVC_H
#define LCDVC_H
#include "shared/defines.h"
2006-04-24 20:05:35 +00:00
#define CHAIN(e,f) { if( e>=0 ) { e=(f); }}
#define CHAIN_END(e) { if( e<0 ) { report( RPT_CRIT,"Critical error, abort"); exit(e); }}
#define UNSET_INT -1
#define UNSET_STR "\01"
#ifndef TRUE
# define TRUE 1
#endif
#ifndef FALSE
# define FALSE 0
#endif
2006-04-24 20:05:35 +00:00
extern char *vcs_device;
extern char *vcsa_device;
extern char *keys[4];
extern char *progname;
#endif