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
00027 #pragma once
00028
00029 #ifndef VC_EXTRALEAN
00030 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
00031 #endif
00032
00033
00034
00035 #ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later.
00036 #define WINVER 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00037 #endif
00038
00039 #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
00040 #define _WIN32_WINNT 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00041 #endif
00042
00043 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
00044 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
00045 #endif
00046
00047 #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
00048 #define _WIN32_IE 0x0400 // Change this to the appropriate value to target IE 5.0 or later.
00049 #endif
00050
00051 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
00052
00053
00054 #define _AFX_ALL_WARNINGS
00055
00056 #include <afxwin.h>
00057 #include <afxext.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 <afxtempl.h>
00065 #include <afxdisp.h>
00066 #include <Shlwapi.h>
00067 #include <atlpath.h>
00068 #include <streams.h>
00069 #include <dvdmedia.h>
00070
00071 #include "..\..\ui\ui.h"
00072 #include "..\..\DSUtil\DSUtil.h"
00073 #include "..\..\filters\filters.h"
00074
00075 #define ResStr(id) CString(MAKEINTRESOURCE(id))