OSDN Git Service

Merge remote-tracking branch 'remotes/hengbandosx/english-_ptr-in-message' into featu...
[hengband/hengband.git] / src / term / screen-processor.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 void move_cursor(int row, int col);
6 void flush(void);
7 void screen_save();
8 void screen_load();
9 void c_put_str(TERM_COLOR attr, concptr str, TERM_LEN row, TERM_LEN col);
10 void put_str(concptr str, TERM_LEN row, TERM_LEN col);
11 void c_prt(TERM_COLOR attr, concptr str, TERM_LEN row, TERM_LEN col);
12 void prt(concptr str, TERM_LEN row, TERM_LEN col);
13 void c_roff(TERM_COLOR attr, concptr str);
14 void roff(concptr str);
15 void clear_from(int row);