1
0

StdAfx.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5. #if !defined(AFX_STDAFX_H__5BCD2B6C_0D14_4C1E_8269_E522431AE0DD__INCLUDED_)
  6. #define AFX_STDAFX_H__5BCD2B6C_0D14_4C1E_8269_E522431AE0DD__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  11. #include <windows.h>
  12. #include <windowsx.h>
  13. #ifdef _DEBUG
  14. #define DEBUG // the DirectShow headers use this symbol
  15. #endif
  16. #include <objbase.h>
  17. #include <control.h>
  18. #include <streams.h>
  19. #include <pstream.h>
  20. #ifndef WAVE_FORMAT_IEEE_FLOAT
  21. #define WAVE_FORMAT_IEEE_FLOAT (3)
  22. #endif
  23. #pragma warning( disable: 4786 ) // identifier was trucated to '255' characters in the debug information
  24. #include <string>
  25. #include <vector>
  26. #include <algorithm>
  27. using namespace std;
  28. #pragma warning( disable: 4355 ) // 'this' : used in base member initialization list
  29. //{{AFX_INSERT_LOCATION}}
  30. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  31. #endif // !defined(AFX_STDAFX_H__5BCD2B6C_0D14_4C1E_8269_E522431AE0DD__INCLUDED_)