home *** CD-ROM | disk | FTP | other *** search
/ Using Visual Basic 5 (Platinum Edition) / vb5.iso / ACTIVEX / SRDVID / DATA.Z / hotspot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-10  |  1.5 KB  |  56 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //    hotspot.h : Interface of the CHotspotApp class
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. //
  7. //  (C) Copyright Black Diamond Consulting, Inc 1996. All rights reserved.
  8. //
  9. //    You have a royalty-free right to use, modify, reproduce and 
  10. //    distribute the Sample Files (and/or any modified version) in 
  11. //    any way you find useful, provided that you agree that Black 
  12. //    Diamond Consulting has no warranty obligations or liability
  13. //    for any Sample Application Files which are modified. 
  14. //
  15. //    Revision History:
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18.  
  19. #define __SVVIEWER_H__
  20.  
  21. #ifndef __AFXWIN_H__
  22.     #error include 'stdafx.h' before including this file for PCH
  23. #endif
  24.  
  25. #include "resource.h"       // main symbols
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CHotspotApp:
  29. // See SVSample.cpp for the implementation of this class
  30. //
  31.  
  32. class CHotspotApp : public CWinApp
  33. {
  34. public:
  35.     CHotspotApp();
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CHotspotApp)
  40.     public:
  41.     virtual BOOL InitInstance();
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45.  
  46.     //{{AFX_MSG(CHotspotApp)
  47.     afx_msg void OnFileOpen();
  48.     afx_msg void OnAppAbout();
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. extern CHotspotApp theApp;
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.