29 lines
632 B
C
29 lines
632 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// 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_
|