]> cygwin.com Git - cygwin-apps/setup.git/blob - state.h
* Replace everything with a new GUI version
[cygwin-apps/setup.git] / state.h
1 /*
2 * Copyright (c) 2000, Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
11 *
12 * Written by DJ Delorie <dj@cygnus.com>
13 *
14 */
15
16 /* The purpose of this file is to contain all the global variables
17 that define the "state" of the install, that is, all the
18 information that the user has provided so far. These are set by
19 the various dialogs and used by the various actions. */
20
21 extern int source;
22
23 extern char * root_dir;
24 extern int root_text;
25
26 extern int net_method;
27 extern char * net_proxy_host;
28 extern int net_proxy_port;
29 extern char * net_proxy_user;
30 extern char * net_proxy_passwd;
31
32 extern char * mirror_site;
33 extern char * other_url;
34
35 extern int trust_level;
36
37 #define MIRROR_SITE (mirror_site ? mirror_site : other_url)
This page took 0.041763 seconds and 6 git commands to generate.