From 634c187043cf4af8328069b8c1fe410efab2e4c7 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 5 Feb 2005 06:42:05 +0000 Subject: [PATCH] Hide a structure. --- io.c | 15 +++++++++------ sst.h | 4 ---- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/io.c b/io.c index 4ad1c77..025aa16 100644 --- a/io.c +++ b/io.c @@ -23,12 +23,15 @@ static int curses = TRUE; #endif /* SERGEEV */ #ifdef SERGEEV -wnd wnds[6]={{1,1,80,25}, /* FULLSCREEN_WINDOW */ - {1,1,25,12}, /* LEFTUPPER_WINDOW */ - {26,2,80,12}, /* SRSCAN_WINDOW */ - {65,1,80,10}, /* LRSCAN_WINDOW */ - {1,13,80,23}, /* LOWER_WINDOW */ - {1,24,80,25}, /* BOTTOM_WINDOW */ +typedef struct { + int wndleft,wndtop,wndright,wndbottom; +} wnd; +static wnd wnds[6]={{1,1,80,25}, /* FULLSCREEN_WINDOW */ + {1,1,25,12}, /* LEFTUPPER_WINDOW */ + {26,2,80,12}, /* SRSCAN_WINDOW */ + {65,1,80,10}, /* LRSCAN_WINDOW */ + {1,13,80,23}, /* LOWER_WINDOW */ + {1,24,80,25}, /* BOTTOM_WINDOW */ }; short curwnd; #endif /* SERGEEV */ diff --git a/sst.h b/sst.h index 14150a1..31fd2f4 100644 --- a/sst.h +++ b/sst.h @@ -452,10 +452,6 @@ void enqueue(char *s); #define SCAN_STATUS 3 #define SCAN_NO_LEFTSIDE 4 -typedef struct { - int wndleft,wndtop,wndright,wndbottom; -} wnd; -extern wnd wnds[6]; /* these need to track io.c:wnd */ #define FULLSCREEN_WINDOW 0 #define LEFTUPPER_WINDOW 1 -- 2.31.1