Leaked source code of windows server 2003
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.

32 lines
571 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. DCSGRID.H
  5. History:
  6. --*/
  7. #if !defined(__DcsGrid_h__)
  8. #define __DcsGrid_h__
  9. namespace MitDisplayColumns
  10. {
  11. interface IOption;
  12. interface IColumn;
  13. };
  14. //------------------------------------------------------------------------------
  15. class LTAPIENTRY CDcsGrid
  16. {
  17. public:
  18. static int DisplayOrder(MitDisplayColumns::IOption * pdcOption,
  19. long nColumnID, long nOffsetDO);
  20. static int DisplayOrder(MitDisplayColumns::IColumn * pdcColumn,
  21. long nOffsetDO);
  22. };
  23. #endif