hi
view hi.h @ 13:175342326bd6
id file
| author | yiyus@1936 |
|---|---|
| date | Sun Jul 26 03:49:52 2009 +0200 (2009-07-26 ago) |
| parents | 39041c2d74f9 |
| children |
1 typedef enum {QNONE=-1, QROOT=0, QIDENT, QMSG, QMAX} qpath;
2 typedef struct Fileinfo_ Fileinfo;
3 typedef struct Msg_ Msg;
5 struct Fileinfo_
6 {
7 char *name;
8 qpath parent;
9 int type;
10 int mode;
11 unsigned int size;
12 };
14 struct Msg_
15 {
16 int id;
17 int size;
18 char *data;
19 };
21 extern Fileinfo files[];
22 extern char *message;
23 extern char hellomsg[12];