mirror of https://github.com/tongzx/nt5src
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.
28 lines
632 B
28 lines
632 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: F O L D G L O B . H
|
|
//
|
|
// Contents: Global definitions for the shell foldering code
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: jeffspr 23 Oct 1997
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
#ifndef _FOLDGLOB_H_
|
|
#define _FOLDGLOB_H_
|
|
|
|
// The connection list
|
|
//
|
|
extern CConnectionList g_ccl;
|
|
|
|
// The state of the operator assist dial flag
|
|
//
|
|
extern bool g_fOperatorAssistEnabled;
|
|
|
|
#endif // _FOLDGLOB_H_
|