From 68a07bf03b7624c9924065cce9ffa45497225834 Mon Sep 17 00:00:00 2001 From: Akinori Ito Date: Thu, 8 Nov 2001 05:14:08 +0000 Subject: Initial revision --- func.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 func.h (limited to 'func.h') diff --git a/func.h b/func.h new file mode 100644 index 0000000..9fb0989 --- /dev/null +++ b/func.h @@ -0,0 +1,28 @@ +/* + * w3m func.h + */ + +#ifndef FUNC_H +#define FUNC_H + +#define K_ESC 0x100 +#define K_ESCB 0x200 +#define K_ESCD 0x400 + +typedef struct _FuncList { + char *id; + void (*func) (); +} FuncList; + +typedef struct _KeyListItem { + int key; + char *data; +} KeyListItem; + +typedef struct _KeyList { + KeyListItem *item; + int nitem; + int size; +} KeyList; + +#endif /* not FUNC_H */ -- cgit v1.2.3