summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-16 16:31:35 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-16 16:31:35 +0000
commit20705189b9bb5e034544800dba8e16517a7d8ba3 (patch)
treee668ecd161ee5c00bbabb5e10c487af805c034aa /amiga/gui.c
parent3c4b721621f018c3a9f0792185191a83f0dd1569 (diff)
downloadnetsurf-20705189b9bb5e034544800dba8e16517a7d8ba3.tar.gz
netsurf-20705189b9bb5e034544800dba8e16517a7d8ba3.tar.bz2
Make win_destroyed variable private to amiga/gui.c
Diffstat (limited to 'amiga/gui.c')
-rw-r--r--amiga/gui.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index f062cb916..680b83624 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -167,22 +167,22 @@ struct ami_gui_tb_userdata {
int items;
};
-struct MsgPort *appport;
-Class *urlStringClass;
-
-BOOL locked_screen = FALSE;
-BOOL screen_closed = FALSE;
-int screen_signal = -1;
-ULONG sz_gad_width = 0;
-ULONG sz_gad_height = 0;
-
-struct MsgPort *applibport = NULL;
-ULONG applibsig = 0;
-uint32 ami_appid = 0;
-struct Hook newprefs_hook;
-
-STRPTR temp_homepage_url = NULL;
-bool cli_force = false;
+static struct MsgPort *appport;
+static Class *urlStringClass;
+
+static BOOL locked_screen = FALSE;
+static int screen_signal = -1;
+static ULONG sz_gad_width = 0;
+static ULONG sz_gad_height = 0;
+static bool win_destroyed;
+
+static struct MsgPort *applibport = NULL;
+static ULONG applibsig = 0;
+static uint32 ami_appid = 0;
+static struct Hook newprefs_hook;
+
+static STRPTR temp_homepage_url = NULL;
+static bool cli_force = false;
static char *current_user;
static char *current_user_dir;