~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/xpinstall/wizard/windows/setup/extern.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/*
 
3
 * The contents of this file are subject to the Netscape Public
 
4
 * License Version 1.1 (the "License"); you may not use this file
 
5
 * except in compliance with the License. You may obtain a copy of
 
6
 * the License at http://www.mozilla.org/NPL/
 
7
 *
 
8
 * Software distributed under the License is distributed on an "AS
 
9
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
 * implied. See the License for the specific language governing
 
11
 * rights and limitations under the License.
 
12
 *
 
13
 * The Original Code is Mozilla Communicator client code,
 
14
 * released March 31, 1998.
 
15
 *
 
16
 * The Initial Developer of the Original Code is Netscape Communications
 
17
 * Corporation.  Portions created by Netscape are
 
18
 * Copyright (C) 1998 Netscape Communications Corporation. All
 
19
 * Rights Reserved.
 
20
 *
 
21
 * Contributor(s): 
 
22
 *     Sean Su <ssu@netscape.com>
 
23
 */
 
24
 
 
25
#ifndef _EXTERN_H_
 
26
#define _EXTERN_H_
 
27
 
 
28
#include "setup.h"
 
29
 
 
30
/* external global variables */
 
31
extern HINSTANCE        hInst;
 
32
extern HINSTANCE        hSetupRscInst;
 
33
extern HINSTANCE        hSDInst;
 
34
extern HINSTANCE        hXPIStubInst;
 
35
 
 
36
extern HBITMAP          hbmpBoxChecked;
 
37
extern HBITMAP          hbmpBoxCheckedDisabled;
 
38
extern HBITMAP          hbmpBoxUnChecked;
 
39
 
 
40
extern HANDLE           hAccelTable;
 
41
 
 
42
extern HWND             hDlgCurrent;
 
43
extern HWND             hDlgMessage;
 
44
extern HWND             hWndMain;
 
45
 
 
46
extern LPSTR            szEGlobalAlloc;
 
47
extern LPSTR            szEStringLoad;
 
48
extern LPSTR            szEDllLoad;
 
49
extern LPSTR            szEStringNull;
 
50
extern LPSTR            szEOutOfMemory;
 
51
extern LPSTR            szTempSetupPath;
 
52
 
 
53
extern LPSTR            szSetupDir;
 
54
extern LPSTR            szTempDir;
 
55
extern LPSTR            szOSTempDir;
 
56
extern LPSTR            szFileIniConfig;
 
57
extern LPSTR            szFileIniInstall;
 
58
 
 
59
extern LPSTR            szSiteSelectorDescription;
 
60
 
 
61
extern DWORD            dwWizardState;
 
62
extern DWORD            dwSetupType;
 
63
 
 
64
extern DWORD            dwTempSetupType;
 
65
extern DWORD            gdwUpgradeValue;
 
66
extern DWORD            gdwSiteSelectorStatus;
 
67
 
 
68
extern BOOL             bSDUserCanceled;
 
69
extern BOOL             bIdiArchivesExists;
 
70
extern BOOL             bCreateDestinationDir;
 
71
extern BOOL             bReboot;
 
72
extern BOOL             gbILUseTemp;
 
73
extern BOOL             gbPreviousUnfinishedDownload;
 
74
extern BOOL             gbIgnoreRunAppX;
 
75
extern BOOL             gbIgnoreProgramFolderX;
 
76
extern BOOL             gbRestrictedAccess;
 
77
extern BOOL             gbDownloadTriggered;
 
78
extern BOOL             gbAllowMultipleInstalls;
 
79
extern BOOL             gbForceInstall;
 
80
extern BOOL             gbForceInstallGre;
 
81
extern BOOL             gShowBannerImage;
 
82
 
 
83
extern setupGen         sgProduct;
 
84
extern diS              diSetup;
 
85
extern diW              diWelcome;
 
86
extern diQL             diQuickLaunch;
 
87
extern diL              diLicense;
 
88
extern diST             diSetupType;
 
89
extern diSC             diSelectComponents;
 
90
extern diSC             diSelectAdditionalComponents;
 
91
extern diWI             diWindowsIntegration;
 
92
extern diPF             diProgramFolder;
 
93
extern diDO             diAdditionalOptions;
 
94
extern diAS             diAdvancedSettings;
 
95
extern diSI             diStartInstall;
 
96
extern diD              diDownload;
 
97
extern diR              diReboot;
 
98
extern siSD             siSDObject;
 
99
extern siCF             siCFXpcomFile;
 
100
extern siC              *siComponents;
 
101
extern ssi              *ssiSiteSelector;
 
102
extern char             *SetupFileList[];
 
103
extern installGui       sgInstallGui;
 
104
extern sems             gErrorMessageStream;
 
105
extern sysinfo          gSystemInfo;
 
106
extern dsN              *gdsnComponentDSRequirement;
 
107
 
 
108
#endif /* _EXTERN_H */
 
109