| 1026 | } |
| 1027 | |
| 1028 | int |
| 1029 | X11_nh_poskey(coordxy *x, coordxy *y, int *mod) |
| 1030 | { |
| 1031 | int val = input_event(EXIT_ON_KEY_OR_BUTTON_PRESS); |
| 1032 | |
| 1033 | if (val == 0) { /* user clicked on a map window */ |
| 1034 | *x = click_x; |
| 1035 | *y = click_y; |
| 1036 | *mod = click_button; |
| 1037 | } |
| 1038 | return val; |
| 1039 | } |
| 1040 | |
| 1041 | winid |
| 1042 | X11_create_nhwindow(int type) |
nothing calls this directly
no test coverage detected