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.

28 lines
731 B

  1. //------------------------------------------------------------------------------
  2. //
  3. // File: DcsGrid.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //------------------------------------------------------------------------------
  8. #if !defined(__DcsGrid_h__)
  9. #define __DcsGrid_h__
  10. namespace MitDisplayColumns
  11. {
  12. interface IOption;
  13. interface IColumn;
  14. };
  15. //------------------------------------------------------------------------------
  16. class LTAPIENTRY CDcsGrid
  17. {
  18. public:
  19. static int DisplayOrder(MitDisplayColumns::IOption * pdcOption,
  20. long nColumnID, long nOffsetDO);
  21. static int DisplayOrder(MitDisplayColumns::IColumn * pdcColumn,
  22. long nOffsetDO);
  23. };
  24. #endif