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.
32 lines
519 B
32 lines
519 B
/*
|
|
* globals.c - IExplorer's global variables.
|
|
*/
|
|
|
|
|
|
/* Headers
|
|
**********/
|
|
|
|
#include "all.h"
|
|
#pragma hdrstop
|
|
|
|
|
|
/* Global Variables
|
|
*******************/
|
|
|
|
WG wg;
|
|
|
|
GWCFONT gwcfont;
|
|
|
|
PDS_DESTRUCTOR pdsFirst;
|
|
|
|
struct Mwin *Mlist; /* Mwin list - master list of windows */
|
|
|
|
struct Preferences gPrefs;
|
|
|
|
// this is to store the last cert that we parsed from SSL that was considered ok.
|
|
struct SSLGlobalType SSLGlobals;
|
|
|
|
#ifdef FEATURE_INTL
|
|
HGLOBAL hLang;
|
|
UINT uLangBuff = 0, uLangBuffSize = 0;
|
|
#endif
|