Commit c1636e368a6dac1abe1faf26fcddcce597b0d0e7
1 parent
3c0e7b65
Exists in
master
wip
Showing
2 changed files
with
3 additions
and
2 deletions
Show diff stats
latest/src/lib/screen.c
... | ... | @@ -89,6 +89,7 @@ enum ts { TS_AUTO, TS_ON, TS_OFF }; |
89 | 89 | |
90 | 90 | // int windows_cp = 0; |
91 | 91 | |
92 | +static void screen_update(H3270 *session, int bstart, int bend); | |
92 | 93 | static void status_connect(H3270 *session, int ignored, void *dunno); |
93 | 94 | static void status_3270_mode(H3270 *session, int ignored, void *dunno); |
94 | 95 | static void status_printer(H3270 *session, int on, void *dunno); |
... | ... | @@ -363,7 +364,7 @@ int screen_read(char *dest, int baddr, int count) |
363 | 364 | } |
364 | 365 | |
365 | 366 | /* Display what's in the buffer. */ |
366 | -void screen_update(H3270 *session, int bstart, int bend) | |
367 | +static void screen_update(H3270 *session, int bstart, int bend) | |
367 | 368 | { |
368 | 369 | |
369 | 370 | int baddr, row, col; | ... | ... |
latest/src/lib/screen.h
... | ... | @@ -18,7 +18,7 @@ |
18 | 18 | LIB3270_INTERNAL int *char_width, *char_height; |
19 | 19 | LIB3270_INTERNAL Boolean screen_has_changes; |
20 | 20 | |
21 | -LIB3270_INTERNAL void screen_update(H3270 *session, int bstart, int bend); | |
21 | +// LIB3270_INTERNAL void screen_update(H3270 *session, int bstart, int bend); | |
22 | 22 | |
23 | 23 | LIB3270_INTERNAL void status_connecting(H3270 *session, Boolean on); |
24 | 24 | LIB3270_INTERNAL void status_resolving(H3270 *session, Boolean on); | ... | ... |