Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*---------------------------------------------------------------------------*\
| MODULE: globals.h | | This module defines the global variables used throughout the program. | | | Copyright (C) 1996-1998 Hewlett Packard Company | Copyright (C) 1996-1998 Microsoft Corporation | | history: | 15-Dec-1996 <chriswil> created. | \*---------------------------------------------------------------------------*/
extern HINSTANCE g_hInst;
/*-----------------------------------*\
| Unlocalizable Strings \*-----------------------------------*/ extern CONST TCHAR g_szFilApp []; extern CONST TCHAR g_szFilInetpp []; extern CONST TCHAR g_szFilOlePrn []; extern CONST TCHAR g_szFilIns16 []; extern CONST TCHAR g_szFilIns32 []; extern CONST TCHAR g_szFilInsEx []; extern CONST TCHAR g_szFilInit [];
extern CONST TCHAR g_szPPName []; extern CONST TCHAR g_szRename []; extern CONST TCHAR g_szHttp []; extern CONST TCHAR g_szHttps []; extern CONST TCHAR g_szExec []; extern CONST TCHAR g_szCmdUns [];
extern CONST TCHAR g_szRegCabKey []; extern CONST TCHAR g_szRegCabCmd []; extern CONST TCHAR g_szRegUninstall[]; extern CONST TCHAR g_szRegUnsKey []; extern CONST TCHAR g_szRegDspNam []; extern CONST TCHAR g_szRegUnsNam []; extern CONST TCHAR g_szRegUnsVal [];
/*-----------------------------------*\
| Localizable Strings \*-----------------------------------*/ extern LPTSTR g_szMsgAdd; extern LPTSTR g_szMsgDel; extern LPTSTR g_szMsgReboot; extern LPTSTR g_szMsgUninstall; extern LPTSTR g_szMsgFailCpy; extern LPTSTR g_szMsgFailAdd; extern LPTSTR g_szMsgFailAsc; extern LPTSTR g_szRegDspVal; extern LPTSTR g_szMsgOsVerHead; extern LPTSTR g_szMsgOsVerMsg;
|