home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / ba / tvxsamp / dlgproxy.h < prev    next >
C/C++ Source or Header  |  1997-09-03  |  2KB  |  72 lines

  1. // DlgProxy.h : TV Viewer sample application
  2. //
  3. // Copyright (C) 1997 Microsoft Corporation
  4. // All rights reserved.
  5. //
  6. // This source code is only intended as a supplement to the
  7. // Broadcast Architecture Programmer's Reference.
  8. // For detailed information regarding Broadcast
  9. // Architecture, see the reference.
  10. // implementation file
  11. //
  12. //
  13.  
  14. #if !defined(AFX_DLGPROXY_H__FF52102B_0CE4_11D1_98AE_080009DC95C5__INCLUDED_)
  15. #define AFX_DLGPROXY_H__FF52102B_0CE4_11D1_98AE_080009DC95C5__INCLUDED_
  16.  
  17. #if _MSC_VER >= 1000
  18. #pragma once
  19. #endif // _MSC_VER >= 1000
  20.  
  21. class CTVXSampDlg;
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CTVXSampDlgAutoProxy command target
  25.  
  26. class CTVXSampDlgAutoProxy : public CCmdTarget
  27. {
  28.     DECLARE_DYNCREATE(CTVXSampDlgAutoProxy)
  29.  
  30.     CTVXSampDlgAutoProxy();           // protected constructor used by dynamic creation
  31.  
  32. // Attributes
  33. public:
  34.     CTVXSampDlg* m_pDialog;
  35.  
  36. // Operations
  37. public:
  38.  
  39. // Overrides
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(CTVXSampDlgAutoProxy)
  42.     public:
  43.     virtual void OnFinalRelease();
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. protected:
  48.     virtual ~CTVXSampDlgAutoProxy();
  49.  
  50.     // Generated message map functions
  51.     //{{AFX_MSG(CTVXSampDlgAutoProxy)
  52.         // NOTE - the ClassWizard will add and remove member functions here.
  53.     //}}AFX_MSG
  54.  
  55.     DECLARE_MESSAGE_MAP()
  56.     DECLARE_OLECREATE(CTVXSampDlgAutoProxy)
  57.  
  58.     // Generated OLE dispatch map functions
  59.     //{{AFX_DISPATCH(CTVXSampDlgAutoProxy)
  60.         // NOTE - the ClassWizard will add and remove member functions here.
  61.     //}}AFX_DISPATCH
  62.     DECLARE_DISPATCH_MAP()
  63.     DECLARE_INTERFACE_MAP()
  64. };
  65.  
  66. /////////////////////////////////////////////////////////////////////////////
  67.  
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  70.  
  71. #endif // !defined(AFX_DLGPROXY_H__FF52102B_0CE4_11D1_98AE_080009DC95C5__INCLUDED_)
  72.