6 * MuCurses cursor implementation specific header file
10 FILE_LICENCE ( GPL2_OR_LATER
);
17 * Restore cursor position from encoded backup variable
19 * @v *win window on which to operate
20 * @v *pos pointer to struct in which original cursor position is stored
22 static inline void _restore_curs_pos ( WINDOW
*win
, struct cursor_pos
*pos
) {
23 wmove ( win
, pos
->y
, pos
->x
);
27 * Store cursor position for later restoration
29 * @v *win window on which to operate
30 * @v *pos pointer to struct in which to store cursor position
32 static inline void _store_curs_pos ( WINDOW
*win
, struct cursor_pos
*pos
) {