選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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 */