Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
703 B

//------------------------------------------------------------------------------
//
// 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