mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-04 04:14:18 -04:00
31 lines
664 B
C
31 lines
664 B
C
#ifndef EL__VIEWER_ACTION_H
|
|
#define EL__VIEWER_ACTION_H
|
|
|
|
#include "config/kbdbind.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct session;
|
|
|
|
enum frame_event_status {
|
|
/* The event was not handled */
|
|
FRAME_EVENT_IGNORED,
|
|
/* The event was handled, and the screen should be redrawn */
|
|
FRAME_EVENT_REFRESH,
|
|
/* The event was handled, and the screen should _not_ be redrawn */
|
|
FRAME_EVENT_OK,
|
|
/* The event was handled, and the current session was destroyed */
|
|
FRAME_EVENT_SESSION_DESTROYED,
|
|
};
|
|
|
|
enum frame_event_status do_action(struct session *ses,
|
|
main_action_T action_id, int verbose);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|