00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #pragma once
00027
00028 #ifndef VC_EXTRALEAN
00029 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
00030 #endif
00031
00032
00033
00034 #ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later.
00035 #define WINVER 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00036 #endif
00037
00038 #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
00039 #define _WIN32_WINNT 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00040 #endif
00041
00042 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
00043 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
00044 #endif
00045
00046 #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
00047 #define _WIN32_IE 0x0400 // Change this to the appropriate value to target IE 5.0 or later.
00048 #endif
00049
00050 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
00051
00052
00053 #define _AFX_ALL_WARNINGS
00054
00055 #include <afxwin.h>
00056 #include <afxext.h>
00057 #include <afxdisp.h>
00058
00059 #include <afxdtctl.h>
00060 #ifndef _AFX_NO_AFXCMN_SUPPORT
00061 #include <afxcmn.h>
00062 #endif // _AFX_NO_AFXCMN_SUPPORT
00063
00064 #include <dshow.h>
00065 #include <streams.h>