32 lines
759 B
C++
32 lines
759 B
C++
//------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// File: DcsGrid.h
|
|
|
|
// Copyright (c) 1994-2001 Microsoft Corporation, All Rights Reserved
|
|
// 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
|