blob: fe22e6a81a555ac6bfe48f3367511547842a6cf8 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9#define FEAT_BROWSE
10
11#define TASK 0x4b534154
12
13/* Nested wimp flags: */
14#define CHILD_FIX_TO_WORKAREA 0
15#define CHILD_FIX_TO_LEFT 1
16#define CHILD_FIX_TO_BOTTOM 1
17#define CHILD_FIX_TO_RIGHT 2
18#define CHILD_FIX_TO_TOP 2
19
20#define CHILD_SELF_SCROLL 0
21#define CHILD_PARENT_SCROLL 1
22
23#define CHILD_LEFT 16
24#define CHILD_BOTTOM 18
25#define CHILD_RIGHT 20
26#define CHILD_TOP 22
27#define CHILD_SCROLL_X 24
28#define CHILD_SCROLL_Y 26
29
30int wimp_poll(int mask, int *block);
31int wimp_poll_idle(int mask, int *block, int end_time);
32void ro_open_main(int *block);