24 lines
574 B
C++
24 lines
574 B
C++
|
//+--------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1994 - 1996.
|
||
|
//
|
||
|
// File: consts.hxx
|
||
|
//
|
||
|
// Contents: Constants used by multiple routines
|
||
|
//
|
||
|
// History: 5-01-1997 DavidMun Created
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __CONSTS_HXX_
|
||
|
#define __CONSTS_HXX_
|
||
|
|
||
|
#define MAX_TITLE_CCH 200
|
||
|
#define MAX_LVIEW_HEADER_CCH 80
|
||
|
|
||
|
extern UINT g_msgFindWizard; // private window message
|
||
|
|
||
|
#endif // __CONSTS_HXX_
|
||
|
|