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.

47 lines
909 B

  1. //
  2. // Microsoft Windows Media Technologies
  3. // Copyright (C) Microsoft Corporation, 1999 - 2001. All rights reserved.
  4. //
  5. //
  6. // This workspace contains two projects -
  7. // 1. ProgHelp which implements the Progress Interface
  8. // 2. The Sample application WmdmApp.
  9. //
  10. // ProgHelp.dll needs to be registered first for the SampleApp to run.
  11. //
  12. // status.h
  13. //
  14. #ifndef _STATUS_H_
  15. #define _STATUS_H_
  16. ///////////////////////////////////////////////////////////////////////////////
  17. //
  18. //
  19. class CStatus
  20. {
  21. // directory block
  22. HWND m_hwndStatusBar;
  23. public:
  24. // constructors/destructors
  25. CStatus();
  26. ~CStatus();
  27. // operations
  28. BOOL Create( HWND hwndParent );
  29. HWND GetHwnd( void );
  30. VOID OnSize( LPRECT prcMain );
  31. VOID SetTextSz( INT nPane, LPSTR lpsz );
  32. VOID SetTextFormatted( INT nPane, UINT uStrID, INT nData, LPSTR pszData );
  33. };
  34. #endif // _STATUS_H_