-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpwb_actions.h
41 lines (29 loc) · 1.45 KB
/
pwb_actions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef PWB_ACTIONS_H
#define PWB_ACTIONS_H
#include "pwb_builtin.h"
#include "pwb_handle.h"
#include "pwb_verbs.h"
PWB_RESULT pwb_action_dummy(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_version(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_limit_print(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_measure_string(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_get_keystroke(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_init(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_restore(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_declare(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_set_margins(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_report(PWBH * handle, ACLONE *args);
PWB_RESULT pwb_action_trigger(PWBH * handle, ACLONE *args);
PWB_RESULT pwb_action_plot_line(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_plot_screen(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_get_data_source(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_get_data_count(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_update_data_count(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_erase_head(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_erase_foot(PWBH *handle, ACLONE *args);
PWB_RESULT pwb_action_declare_keymap(PWBH *handle, ACLONE *args);
// in pwb_action_get_dims.c
PWB_RESULT pwb_action_get_dims(PWBH *handle, ACLONE *args);
// in pwb_action_start.c:
PWB_RESULT pwb_action_start(PWBH *handle, ACLONE *args);
#endif