home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Programare / skincraft / SkinCrafter_v1.4.12_Demo.msi / _49E29CB9A65AABBF653C1037E1AA74B6 / _AA514B4F2DF24E91AD35DE9C864D2D04 < prev    next >
Encoding:
Text File  |  2003-09-06  |  1.6 KB  |  64 lines

  1. // MDIDemo.h : main header file for the MDIDEMO application
  2. //
  3.  
  4. #if !defined(AFX_MDIDEMO_H__E1D4AE41_0C17_49E0_912B_7A519459A4B2__INCLUDED_)
  5. #define AFX_MDIDEMO_H__E1D4AE41_0C17_49E0_912B_7A519459A4B2__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.  
  17. #include "skincrafter.h"
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CMDIDemoApp:
  20. // See MDIDemo.cpp for the implementation of this class
  21. //
  22.  
  23. class CMDIDemoApp : public CWinApp
  24. {
  25. public:
  26.     CMDIDemoApp();
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CMDIDemoApp)
  31.     public:
  32.     virtual BOOL InitInstance();
  33.     virtual int ExitInstance();
  34.     //}}AFX_VIRTUAL
  35.     ISCSkin m_pSkin;
  36.  
  37. // Implementation
  38. public:
  39.     HMENU m_hMDIMenu;
  40.     HACCEL m_hMDIAccel;
  41.  
  42.     CString m_ExePath;
  43.     CString m_strSkinDir;
  44.  
  45.     
  46. public:
  47.     //{{AFX_MSG(CMDIDemoApp)
  48.     afx_msg void OnAppAbout();
  49.     afx_msg void OnFileNew();
  50.         // NOTE - the ClassWizard will add and remove member functions here.
  51.         //    DO NOT EDIT what you see in these blocks of generated code !
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.  
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. extern CMDIDemoApp theApp;
  62.  
  63. #endif // !defined(AFX_MDIDEMO_H__E1D4AE41_0C17_49E0_912B_7A519459A4B2__INCLUDED_)
  64.