david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/hci/mucurses/cursor.h

12 lines
228 B
C
Raw Normal View History

#ifndef CURSOR_H
#define CURSOR_H
struct cursor_pos {
unsigned int y, x;
};
void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos );
void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos );
#endif /* CURSOR_H */