home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / advanced / dllhusk / dllhusk.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  51 lines

  1. // dllhusk.h : main header file for the DLLHUSK application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "resource.h"       // main symbols
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CHuskApp:
  21. // See dllhusk.cpp for the implementation of this class
  22. //
  23.  
  24. class CListOutputFrame;     // from TESTDLL2
  25.  
  26. class CHuskApp : public CWinApp
  27. {
  28. public:
  29.     CHuskApp();
  30.  
  31. // Attributes
  32.     CListOutputFrame* m_pListOut;
  33.  
  34. // Overrides
  35.     virtual BOOL InitInstance();
  36.  
  37. // Implementation
  38.     BOOL CreateListOutput();
  39.  
  40.     //{{AFX_MSG(CHuskApp)
  41.     afx_msg void OnAppAbout();
  42.     afx_msg void OnDumpClasses();           // debug only
  43.     afx_msg void OnDumpDocTemplates();      // debug only
  44.     afx_msg void OnDumpObjects();           // debug only
  45.     afx_msg void OnDumpDLLs();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.