]> cygwin.com Git - cygwin-apps/setup.git/blame - state.h
* localdir.cc: new, local package directory selection dialog; cd
[cygwin-apps/setup.git] / state.h
CommitLineData
23c9e63c
DD
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
21extern int source;
22
c92e1307
DD
23extern char * local_dir;
24
23c9e63c
DD
25extern char * root_dir;
26extern int root_text;
24e259bb 27extern int root_scope;
50225eae
DD
28extern int root_menu;
29extern int root_desktop;
23c9e63c
DD
30
31extern int net_method;
32extern char * net_proxy_host;
33extern int net_proxy_port;
4e8ff53f
DD
34
35extern char * net_user;
36extern char * net_passwd;
23c9e63c
DD
37extern char * net_proxy_user;
38extern char * net_proxy_passwd;
39
40extern char * mirror_site;
41extern char * other_url;
42
43extern int trust_level;
44
45#define MIRROR_SITE (mirror_site ? mirror_site : other_url)
This page took 0.029008 seconds and 5 git commands to generate.