diff options
author | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 |
---|---|---|
committer | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 |
commit | 68a07bf03b7624c9924065cce9ffa45497225834 (patch) | |
tree | c2adb06a909a8594445e4a3f8587c4bad46e3ecd /func.h | |
download | w3m-68a07bf03b7624c9924065cce9ffa45497225834.tar.gz w3m-68a07bf03b7624c9924065cce9ffa45497225834.zip |
Initial revision
Diffstat (limited to 'func.h')
-rw-r--r-- | func.h | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -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 */ |