home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / DirectShow / Misc / Mapper / Mapper.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-08  |  1.6 KB  |  57 lines

  1. //------------------------------------------------------------------------------
  2. // File: Mapper.h
  3. //
  4. // Desc: DirectShow sample code - an MFC based C++ filter mapper application.
  5. //
  6. // Copyright (c) 2000-2001 Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8. // Mapper.h : main header file for the MAPPER application
  9. //
  10.  
  11. #if !defined(AFX_MAPPER_H__8F990BFF_27ED_4CE2_AF97_7C2E416356FB__INCLUDED_)
  12. #define AFX_MAPPER_H__8F990BFF_27ED_4CE2_AF97_7C2E416356FB__INCLUDED_
  13.  
  14. #if _MSC_VER > 1000
  15. #pragma once
  16. #endif // _MSC_VER > 1000
  17.  
  18. #ifndef __AFXWIN_H__
  19.     #error include 'stdafx.h' before including this file for PCH
  20. #endif
  21.  
  22. #include "resource.h"        // main symbols
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CMapperApp:
  26. // See Mapper.cpp for the implementation of this class
  27. //
  28.  
  29. class CMapperApp : public CWinApp
  30. {
  31. public:
  32.     CMapperApp();
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CMapperApp)
  37.     public:
  38.     virtual BOOL InitInstance();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42.  
  43.     //{{AFX_MSG(CMapperApp)
  44.         // NOTE - the ClassWizard will add and remove member functions here.
  45.         //    DO NOT EDIT what you see in these blocks of generated code !
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.  
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55.  
  56. #endif // !defined(AFX_MAPPER_H__8F990BFF_27ED_4CE2_AF97_7C2E416356FB__INCLUDED_)
  57.