2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-04-15 09:39:26 +00:00
xNBA/src/hci/mucurses/cursor.c
Dan Lynch ad1aca0634 - separated curses.c out into separate source files to optimise
library use later on
- some small mods to existing functions
2006-06-08 17:23:37 +00:00

26 lines
663 B
C

#include <curses.h>
#include "cursor.h"
/**
* Restore cursor position from encoded backup variable
*
* @v *win window on which to operate
* @v *pos pointer to struct in which original cursor position is stored
*/
void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
win->curs_y = pos->y;
win->curs_x = pos->x;
win->scr->movetoyx ( win->scr, win->curs_y, win->curs_x );
}
/**
* Store cursor position for later restoration
*
* @v *win window on which to operate
* @v *pos pointer to struct in which to store cursor position
*/
void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
pos->y = win->curs_y;
pos->x = win->curs_x;
}