home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Programare / skincraft / SkinCrafter_v1.4.12_Demo.msi / _49E29CB9A65AABBF653C1037E1AA74B6 / _91FD78ABA88D4AE980F03C6D93B930FB < prev    next >
Encoding:
Text File  |  2004-02-20  |  1.7 KB  |  66 lines

  1. // SCPlayer.h : main header file for the SCPLAYER application
  2. //
  3.  
  4. #if !defined(AFX_SCPLAYER_H__5FFA0E31_C091_4A89_8197_ED29B196C2B8__INCLUDED_)
  5. #define AFX_SCPLAYER_H__5FFA0E31_C091_4A89_8197_ED29B196C2B8__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 "SCPlayerDlg.h"
  18. #include "PlayListDlg.h"
  19. #include "wmpplayer4.h"
  20. #include "wmpcontrols.h"
  21. #include "wmpplaylist.h"
  22. #include "wmpmedia.h"
  23. #include "skincrafter.h"
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CSCPlayerApp:
  27. // See SCPlayer.cpp for the implementation of this class
  28. //
  29.  
  30. class CSCPlayerApp : public CWinApp
  31. {
  32. public:
  33.     ISCSkin* m_pSkin;
  34.     CSCPlayerApp();
  35.     CWMPPlayer4    m_mWMPlayer;
  36.     CWMPPlaylist *m_pthePlayList;
  37.     CPlayListDlg *m_pPlayListDlg;
  38.     CSCPlayerDlg *m_pSCPlayerDlg;
  39.     
  40. // Overrides
  41.     // ClassWizard generated virtual function overrides
  42.     //{{AFX_VIRTUAL(CSCPlayerApp)
  43.     public:
  44.     virtual BOOL InitInstance();
  45.     virtual int ExitInstance();
  46.     //}}AFX_VIRTUAL
  47.  
  48. // Implementation
  49.  
  50.     
  51.     //{{AFX_MSG(CSCPlayerApp)
  52.         // NOTE - the ClassWizard will add and remove member functions here.
  53.         //    DO NOT EDIT what you see in these blocks of generated code !
  54.     //}}AFX_MSG
  55.     DECLARE_MESSAGE_MAP()
  56. };
  57.  
  58. extern CSCPlayerApp theApp;
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61.  
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  64.  
  65. #endif // !defined(AFX_SCPLAYER_H__5FFA0E31_C091_4A89_8197_ED29B196C2B8__INCLUDED_)
  66.