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.

38 lines
754 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2002 Microsoft Corporation. All rights reserved.
  3. // Copyright (c) 2002 OSR Open Systems Resources, Inc.
  4. //
  5. // ChildView.h : interface of the CChildView class
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. // CChildView window
  9. class CChildView : public CWnd
  10. {
  11. // Construction
  12. public:
  13. CChildView();
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. protected:
  20. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  21. // Implementation
  22. public:
  23. virtual ~CChildView();
  24. // Generated message map functions
  25. protected:
  26. afx_msg void OnPaint();
  27. DECLARE_MESSAGE_MAP()
  28. };