17 lines
273 B
C
17 lines
273 B
C
#ifndef LINE_ED_HOOK_H_
|
|
#define LINE_ED_HOOK_H_
|
|
|
|
#include <blue/term/tty.h>
|
|
|
|
enum hook_id {
|
|
HOOK_KEYPRESS,
|
|
HOOK_BEFORE_PAINT,
|
|
};
|
|
|
|
struct line_ed;
|
|
|
|
extern void hook_keypress(struct line_ed *ed, b_keycode key);
|
|
extern void hook_buffer_modified(struct line_ed *ed);
|
|
|
|
#endif
|