Keyboard control for Dominosa (patch largely due to James H, though

with considerable meddling from me).

[originally from svn r8788]
This commit is contained in:
Simon Tatham
2009-12-22 16:47:42 +00:00
parent 2bdabe31cf
commit 2b06c12728
4 changed files with 105 additions and 6 deletions

View File

@ -303,6 +303,9 @@ void shuffle(void *array, int nelts, int eltsize, random_state *rs);
void draw_rect_outline(drawing *dr, int x, int y, int w, int h,
int colour);
/* Draw a set of rectangle corners (e.g. for a cursor display). */
void draw_rect_corners(drawing *dr, int cx, int cy, int r, int col);
void move_cursor(int button, int *x, int *y, int maxw, int maxh, int wrap);
/* Used in netslide.c and sixteen.c for cursor movement around edge. */