mirror of https://github.com/lianthony/NT4.0
22 lines
539 B
22 lines
539 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|
//
|
|
// File: global.hxx
|
|
//
|
|
// Contents: global variable definitions
|
|
//
|
|
// History: 11-Jan-94 BruceFo Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef __GLOBAL_HXX__
|
|
#define __GLOBAL_HXX__
|
|
|
|
extern HINSTANCE g_hInstance;
|
|
|
|
extern ULONG g_ulcInstancesHard;
|
|
extern ULONG g_ulcInstancesHardMenu;
|
|
|
|
#endif // __GLOBAL_HXX__
|