aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd.h
blob: 659a554f41347798b9f015d344b275393c8f1318 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * cmd.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/*
 * $Id$
 */

/*
 * $Log$
 * Revision 1.4  2008/03/02 10:37:56  james
 * *** empty log message ***
 *
 * Revision 1.3  2008/02/28 11:27:48  james
 * *** empty log message ***
 *
 * Revision 1.2  2008/02/23 11:48:37  james
 * *** empty log message ***
 *
 * Revision 1.1  2008/02/15 15:14:19  james
 * *** empty log message ***
 *
 */

#ifndef __CMD_H__
#define __CMD_H__

#define CMD_KEY 2               /*CTRL B */

typedef struct {
  int active;
  int error;
  int disconnect;
  char csl[128];
  char buf[128];
  int ptr;
} Cmd;

#endif /* __CMD_H__ */