add lcdvc client: virtal console on LCD

This commit is contained in:
marschap
2006-04-24 20:05:35 +00:00
parent 61c80a199b
commit 1aaa20b1de
11 changed files with 759 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef LCDVC_H
#define LCDVC_H
#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 min(a,b) ((a)<(b))?(a):(b)
#define UNSET_INT -1
#define UNSET_STR "\01"
extern char *vcs_device;
extern char *vcsa_device;
extern char *keys[4];
extern char *progname;
int split(char * str, char delim, char * parts[], int maxparts);
#endif