You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.7 KiB
89 lines
1.7 KiB
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifndef UNICODE
|
|
#define _UNICODE
|
|
#define UNICODE
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _WIN32_WINNT
|
|
#define _WIN32_WINNT 0x0400
|
|
#endif
|
|
|
|
#ifndef _WIN32_IE
|
|
#define _WIN32_IE 0x0500
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
#include <shellapi.h>
|
|
#include <process.h>
|
|
|
|
#include <atlbase.h>
|
|
#include <atlapp.h>
|
|
|
|
extern CAppModule _Module;
|
|
|
|
#pragma warning( push, 3 )
|
|
#include <atlcom.h>
|
|
#pragma warning( pop )
|
|
|
|
#include <atlwin.h>
|
|
#include <atlmisc.h>
|
|
#include <atlframe.h>
|
|
#include <atlctrls.h>
|
|
#include <atldlgs.h>
|
|
#include <atlctrlx.h>
|
|
#include <windowsx.h>
|
|
#include <comdef.h>
|
|
#include <initguid.h>
|
|
#include <iadmw.h> // ABO definition
|
|
#include <iiscnfg.h> // MD_ & IIS_MD_ defines
|
|
|
|
|
|
// STL
|
|
#pragma warning( push, 3 )
|
|
#include <list>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <map>
|
|
#include <queue>
|
|
#include <algorithm>
|
|
#pragma warning( pop )
|
|
|
|
#pragma comment( lib, "comctl32.lib" )
|
|
#pragma comment( lib, "Shlwapi.lib" )
|
|
|
|
|
|
typedef std::list<std::wstring> TStringList;
|
|
typedef std::auto_ptr<BYTE> TByteAutoPtr;
|
|
|
|
|
|
// IIS Migr tool shared
|
|
#include <iismigrtool.h> // IIS Migr Tool COM object
|
|
#include <Macros.h>
|
|
#include <Wrappers.h>
|
|
#include <Exceptions.h>
|
|
|
|
|
|
|
|
_COM_SMARTPTR_TYPEDEF( IMSAdminBase, __uuidof( IMSAdminBase ) );
|
|
_COM_SMARTPTR_TYPEDEF( IExportPackage, __uuidof( IExportPackage ) );
|
|
_COM_SMARTPTR_TYPEDEF( IImportPackage, __uuidof( IImportPackage ) );
|
|
_COM_SMARTPTR_TYPEDEF( ISiteInfo, __uuidof( ISiteInfo ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|