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.

29 lines
443 B

  1. // Copyright (C) 1996-1997 Microsoft Corporation. All rights reserved.
  2. #if _MSC_VER > 1000
  3. #pragma once
  4. #endif
  5. #ifndef __CNOTES_H__
  6. #define __CNOTES_H__
  7. #include "secwin.h"
  8. class CNotes
  9. {
  10. public:
  11. CNotes(CHHWinType* phh);
  12. ~CNotes();
  13. void HideWindow(void);
  14. void ShowWindow(void);
  15. void ResizeWindow(BOOL fClientOnly);
  16. protected:
  17. HWND m_hwndNotes;
  18. HWND m_hwndEditBox;
  19. BOOL m_fModified;
  20. CHHWinType* m_phh;
  21. };
  22. #endif // __CNOTES_H__