mirror of https://github.com/lianthony/NT4.0
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.
27 lines
501 B
27 lines
501 B
/*
|
|
* globals.h - IExplorer's global variables description.
|
|
*/
|
|
|
|
|
|
/* Global Variables
|
|
*******************/
|
|
|
|
struct SSLGlobalType {
|
|
int nLastCertOk;
|
|
char *pLastCertOk;
|
|
DWORD dwCertGlobalSettings;
|
|
};
|
|
|
|
/* globals.c */
|
|
|
|
extern WG wg;
|
|
extern GWCFONT gwcfont;
|
|
extern PDS_DESTRUCTOR pdsFirst;
|
|
extern struct Mwin *Mlist;
|
|
extern struct Preferences gPrefs;
|
|
extern struct SSLGlobalType SSLGlobals;
|
|
|
|
#ifdef FEATURE_INTL
|
|
extern HGLOBAL hLang;
|
|
extern UINT uLangBuff, uLangBuffSize;
|
|
#endif
|