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

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