summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/proto.h5
-rw-r--r--include/pttstruct.h1
2 files changed, 3 insertions, 3 deletions
diff --git a/include/proto.h b/include/proto.h
index f3579619..87efad8c 100644
--- a/include/proto.h
+++ b/include/proto.h
@@ -554,9 +554,8 @@ void scroll(void);
void getyx(int *y, int *x);
void initscr(void);
void out_lines(const char *str, int line);
-void screen_backup(int len, const screenline_t *bp, screen_backup_t *buf);
-size_t screen_backupsize(int len, const screenline_t *bp);
-void screen_restore(int len, screenline_t *bp, const screen_backup_t *buf);
+void screen_backup(screen_backup_t *buf);
+void screen_restore(const screen_backup_t *buf);
/* stuff */
#define isprint2(ch) ((ch & 0x80) || isprint(ch))
diff --git a/include/pttstruct.h b/include/pttstruct.h
index 9866b679..6794d38b 100644
--- a/include/pttstruct.h
+++ b/include/pttstruct.h
@@ -427,6 +427,7 @@ typedef struct water_t {
typedef struct {
int row, col;
+ int y, x;
void *raw_memory;
} screen_backup_t;