29 lines
703 B
C
29 lines
703 B
C
|
//------------------------------------------------------------------------------
|
||
|
//
|
||
|
// File: DcsGrid.h
|
||
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
#if !defined(__DcsGrid_h__)
|
||
|
#define __DcsGrid_h__
|
||
|
|
||
|
namespace MitDisplayColumns
|
||
|
{
|
||
|
interface IOption;
|
||
|
interface IColumn;
|
||
|
};
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
class LTAPIENTRY CDcsGrid
|
||
|
{
|
||
|
public:
|
||
|
static int DisplayOrder(MitDisplayColumns::IOption * pdcOption,
|
||
|
long nColumnID, long nOffsetDO);
|
||
|
static int DisplayOrder(MitDisplayColumns::IColumn * pdcColumn,
|
||
|
long nOffsetDO);
|
||
|
};
|
||
|
|
||
|
#endif
|