30 lines
684 B
C
30 lines
684 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
// Copyright (C) Microsoft Corporation, 1992 - 1997.
|
||
|
//
|
||
|
// File: osdefine.h
|
||
|
//
|
||
|
// Contents: Generic header OneStop defines
|
||
|
//
|
||
|
// History: 24-Oct-97 SusiA Created
|
||
|
//
|
||
|
//----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef __OSDEFINE_H__
|
||
|
#define __OSDEFINE_H__
|
||
|
|
||
|
|
||
|
#define LVIS_STATEIMAGEMASK_CHECK (0x2000)
|
||
|
#define LVIS_STATEIMAGEMASK_UNCHECK (0x1000)
|
||
|
|
||
|
#define MAX_STRING_RES 64
|
||
|
#define MAX_ERR0R_ICONS 20
|
||
|
#define BULLET_INDENT 2
|
||
|
|
||
|
#ifndef ILC_MIRROR
|
||
|
#define ILC_MIRROR 0x2000
|
||
|
#endif // ILC_MIRROR
|
||
|
|
||
|
#endif __OSDEFINE_H__
|