home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Comunicatii / netmansuite / setup.exe / Samples / VisualC / Plugin.h < prev    next >
C/C++ Source or Header  |  2001-05-17  |  1KB  |  52 lines

  1. // Plugin.h : main header file for the PLUGIN DLL
  2. //
  3.  
  4. #if !defined(AFX_PLUGIN_H__A427CC46_49BF_11D5_AAD8_0002B322E676__INCLUDED_)
  5. #define AFX_PLUGIN_H__A427CC46_49BF_11D5_AAD8_0002B322E676__INCLUDED_
  6.  
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10.  
  11. #ifndef __AFXWIN_H__
  12.     #error include 'stdafx.h' before including this file for PCH
  13. #endif
  14.  
  15. #include "resource.h"        // main symbols
  16. #include "khwPlugin.h"
  17. #include "PropsDlg.h"
  18. #include "PrefsDlg.h"
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CPluginApp
  21. // See Plugin.cpp for the implementation of this class
  22. //
  23.  
  24. class CPluginApp : public CWinApp
  25. {
  26. public:
  27.     CPrefsDlg* m_pPrefsDlg;
  28.     int m_iPrefsValue;
  29.     CPropsDlg* m_pPropsDlg;
  30.     CPluginApp();
  31.     CString GetStartDir();
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CPluginApp)
  36.     //}}AFX_VIRTUAL
  37.  
  38.     //{{AFX_MSG(CPluginApp)
  39.         // NOTE - the ClassWizard will add and remove member functions here.
  40.         //    DO NOT EDIT what you see in these blocks of generated code !
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.  
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  50.  
  51. #endif // !defined(AFX_PLUGIN_H__A427CC46_49BF_11D5_AAD8_0002B322E676__INCLUDED_)
  52.