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.
55 lines
1.5 KiB
55 lines
1.5 KiB
/**********************************************************************/
|
|
/** Microsoft Windows NT **/
|
|
/** Copyright(c) Microsoft Corp., 1995 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
globals.c
|
|
|
|
This file contains global variable definitions.
|
|
|
|
*/
|
|
|
|
|
|
#include "gopherp.h"
|
|
#pragma hdrstop
|
|
|
|
|
|
//
|
|
// Various handles.
|
|
//
|
|
|
|
HINSTANCE _hInst; // The current instance handle.
|
|
HACCEL _hAccel; // Accelerator table handle.
|
|
HWND _hwndFrame; // Frame window handle.
|
|
HWND _hwndClient; // Client window handle.
|
|
HCURSOR _hcurWait; // Wait cursor.
|
|
|
|
|
|
//
|
|
// Window class names.
|
|
//
|
|
|
|
CHAR * _pszFrameClass; // Frame window class.
|
|
CHAR * _pszClientClass; // Client window class.
|
|
|
|
|
|
//
|
|
// Configuration data.
|
|
//
|
|
|
|
CHAR * _pszAppName; // Application name.
|
|
BOOL _fSaveSettings; // Safe config settings if TRUE.
|
|
BOOL _fShowStatusBar; // Status bar enabled if TRUE.
|
|
WINDOWPLACEMENT _wpFrame; // Placement of frame window.
|
|
CHAR * _apszServerMru[MAX_SERVER_MRU];
|
|
INT _nServerMruItems;
|
|
|
|
|
|
//
|
|
// Microsoft Internet Extensions for Win32 data.
|
|
//
|
|
|
|
HINTERNET _hInternet;
|
|
HINTERNET _hGopher;
|
|
|