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.

46 lines
1.1 KiB

  1. // host.h : main header file for the HOST application
  2. //
  3. #include "ihost.h"
  4. #include "chost.h"
  5. #include "idsource.h"
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "resource.h" // main symbols
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CHostApp:
  12. // See host.cpp for the implementation of this class
  13. //
  14. class CHostApp : public CWinApp
  15. {
  16. public:
  17. CHostApp();
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CHostApp)
  21. public:
  22. virtual BOOL InitInstance();
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. //{{AFX_MSG(CHostApp)
  26. afx_msg void OnAppAbout();
  27. // NOTE - the ClassWizard will add and remove member functions here.
  28. // DO NOT EDIT what you see in these blocks of generated code !
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. public:
  32. ATL::CComObject<CSxApwHost> m_host;
  33. CSxApwComPtr<ISxApwDataSource> m_dataSource;
  34. };
  35. /////////////////////////////////////////////////////////////////////////////
  36. //{{AFX_INSERT_LOCATION}}
  37. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.