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.

26 lines
548 B

  1. /*--------------------------------------------------------------------------*
  2. *
  3. * Microsoft Windows
  4. * Copyright (C) Microsoft Corporation, 1999 - 1999
  5. *
  6. * File: constatbar.h
  7. *
  8. * Contents: Interface file for CConsoleStatusBar
  9. *
  10. * History: 24-Aug-99 jeffro Created
  11. *
  12. *--------------------------------------------------------------------------*/
  13. #ifndef CONSTATBAR_H
  14. #define CONSTATBAR_H
  15. #pragma once
  16. class CConsoleStatusBar
  17. {
  18. public:
  19. virtual SC ScSetStatusText (LPCTSTR pszText) = 0;
  20. };
  21. #endif /* CONSTATBAR_H */