You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cursor.h 304B

1234567891011121314151617
  1. #ifndef CURSOR_H
  2. #define CURSOR_H
  3. /** @file
  4. *
  5. * MuCurses cursor implementation specific header file
  6. *
  7. */
  8. struct cursor_pos {
  9. unsigned int y, x;
  10. };
  11. void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos );
  12. void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos );
  13. #endif /* CURSOR_H */