├── InnoSetup ├── httrack-x64.iss ├── httrack.iss └── setup_license.txt ├── WinHTTrack ├── AddFilter.cpp ├── AddFilter.h ├── BatchUpdate.cpp ├── BatchUpdate.h ├── BuildOptions.cpp ├── BuildOptions.h ├── CatchUrl.cpp ├── CatchUrl.h ├── CrashReport.cpp ├── CrashReport.h ├── DialogContainer.cpp ├── DialogContainer.h ├── DialogHtmlHelp.cpp ├── DialogHtmlHelp.h ├── DirTreeView.cpp ├── DirTreeView.h ├── EasyDropTarget.cpp ├── EasyDropTarget.h ├── FirstInfo.cpp ├── FirstInfo.h ├── HTMLHelp.cpp ├── HTMLHelp.h ├── HTTrackInterface.c ├── HTTrackInterface.h ├── HtmlCtrl.cpp ├── HtmlCtrl.h ├── HtmlFrm.cpp ├── HtmlFrm.h ├── InfoUrl.cpp ├── InfoUrl.h ├── Infoend.cpp ├── InsertUrl.cpp ├── InsertUrl.h ├── Iplog.cpp ├── Iplog.h ├── LaunchHelp.cpp ├── LaunchHelp.h ├── MainFrm.cpp ├── MainFrm.h ├── MainTab.cpp ├── MainTab.h ├── MemRegister.cpp ├── MemRegister.h ├── NewFolder.cpp ├── NewFolder.h ├── NewProj.cpp ├── NewProj.h ├── OptionTab1.cpp ├── OptionTab1.h ├── OptionTab10.cpp ├── OptionTab10.h ├── OptionTab11.cpp ├── OptionTab11.h ├── OptionTab2.cpp ├── OptionTab2.h ├── OptionTab3.cpp ├── OptionTab3.h ├── OptionTab4.cpp ├── OptionTab4.h ├── OptionTab5.cpp ├── OptionTab5.h ├── OptionTab6.cpp ├── OptionTab6.h ├── OptionTab7.cpp ├── OptionTab7.h ├── OptionTab8.cpp ├── OptionTab8.h ├── OptionTab9.cpp ├── OptionTab9.h ├── ProxyId.cpp ├── ProxyId.h ├── RasLoad.cpp ├── RasLoad.h ├── Shell.cpp ├── Shell.h ├── StdAfx.cpp ├── StdAfx.h ├── TreeViewToolTip.cpp ├── TreeViewToolTip.h ├── Wid1.cpp ├── Wid1.h ├── WinHTTrack.cpp ├── WinHTTrack.dsp ├── WinHTTrack.dsw ├── WinHTTrack.h ├── WinHTTrack.rc ├── WinHTTrack.sln ├── WinHTTrack.vcproj ├── WinHTTrackDoc.cpp ├── WinHTTrackDoc.h ├── WinHTTrackView.cpp ├── WinHTTrackView.h ├── WizLinks.cpp ├── WizLinks.h ├── WizTab.cpp ├── WizTab.h ├── Wizard.cpp ├── Wizard2.cpp ├── XSHBrowseForFolder.cpp ├── XSHBrowseForFolder.h ├── about.cpp ├── about.h ├── cpp_lang.h ├── gpl.txt ├── htssystem.h ├── infoend.h ├── inprogress.cpp ├── inprogress.h ├── newlang.cpp ├── newlang.h ├── readme.ipv6.htm ├── res │ ├── Shell.ico │ ├── Toolbar.bmp │ ├── WinHTTrack.rc2 │ ├── ico00001.ico │ ├── icon1.ico │ ├── icon2.ico │ ├── icon3.ico │ ├── icon4.ico │ ├── icon5.ico │ ├── icon6.ico │ ├── idr_main.ico │ ├── mainfram.bmp │ ├── manifest.xml │ └── www.cur ├── resource.h ├── setup_license.txt ├── splitter.cpp ├── splitter.h ├── trans.cpp ├── trans.h ├── webhttrack.dsp ├── webhttrack.dsw ├── wizard.h └── wizard2.h ├── WinHTTrackIEBar ├── Shell.ico ├── StdAfx.cpp ├── StdAfx.h ├── WinHTTrackIEBar.clw ├── WinHTTrackIEBar.cpp ├── WinHTTrackIEBar.def ├── WinHTTrackIEBar.dsp ├── WinHTTrackIEBar.dsw ├── WinHTTrackIEBar.h ├── WinHTTrackIEBar.idl ├── WinHTTrackIEBar.plg ├── WinHTTrackIEBar.rc ├── WinHTTrackIEBar.tlb ├── WinHTTrackIEBar.vcproj ├── WinHTTrackIEBarps.def ├── WinHTTrackIEBarps.mk ├── WinHTTrackLauncher.cpp ├── WinHTTrackLauncher.h ├── WinHTTrackLauncher.rgs ├── dlldata.c ├── gpl.txt ├── projectInfo.cpp ├── projectInfo.h ├── resource.h └── setup_license.txt ├── htsswf ├── StdAfx.cpp ├── StdAfx.h ├── htsswf.cpp ├── htsswf.dsp ├── htsswf.dsw ├── htsswf.h ├── htsswf.vcproj ├── setup_license.txt └── swf │ └── swf2html.txt ├── setup_license.txt └── warning.txt /InnoSetup/httrack-x64.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/InnoSetup/httrack-x64.iss -------------------------------------------------------------------------------- /InnoSetup/httrack.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/InnoSetup/httrack.iss -------------------------------------------------------------------------------- /InnoSetup/setup_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/InnoSetup/setup_license.txt -------------------------------------------------------------------------------- /WinHTTrack/AddFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/AddFilter.cpp -------------------------------------------------------------------------------- /WinHTTrack/AddFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/AddFilter.h -------------------------------------------------------------------------------- /WinHTTrack/BatchUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/BatchUpdate.cpp -------------------------------------------------------------------------------- /WinHTTrack/BatchUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/BatchUpdate.h -------------------------------------------------------------------------------- /WinHTTrack/BuildOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/BuildOptions.cpp -------------------------------------------------------------------------------- /WinHTTrack/BuildOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/BuildOptions.h -------------------------------------------------------------------------------- /WinHTTrack/CatchUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/CatchUrl.cpp -------------------------------------------------------------------------------- /WinHTTrack/CatchUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/CatchUrl.h -------------------------------------------------------------------------------- /WinHTTrack/CrashReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/CrashReport.cpp -------------------------------------------------------------------------------- /WinHTTrack/CrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/CrashReport.h -------------------------------------------------------------------------------- /WinHTTrack/DialogContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/DialogContainer.cpp -------------------------------------------------------------------------------- /WinHTTrack/DialogContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/DialogContainer.h -------------------------------------------------------------------------------- /WinHTTrack/DialogHtmlHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/DialogHtmlHelp.cpp -------------------------------------------------------------------------------- /WinHTTrack/DialogHtmlHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/DialogHtmlHelp.h -------------------------------------------------------------------------------- /WinHTTrack/DirTreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/DirTreeView.cpp -------------------------------------------------------------------------------- /WinHTTrack/DirTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/DirTreeView.h -------------------------------------------------------------------------------- /WinHTTrack/EasyDropTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/EasyDropTarget.cpp -------------------------------------------------------------------------------- /WinHTTrack/EasyDropTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/EasyDropTarget.h -------------------------------------------------------------------------------- /WinHTTrack/FirstInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/FirstInfo.cpp -------------------------------------------------------------------------------- /WinHTTrack/FirstInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/FirstInfo.h -------------------------------------------------------------------------------- /WinHTTrack/HTMLHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HTMLHelp.cpp -------------------------------------------------------------------------------- /WinHTTrack/HTMLHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HTMLHelp.h -------------------------------------------------------------------------------- /WinHTTrack/HTTrackInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HTTrackInterface.c -------------------------------------------------------------------------------- /WinHTTrack/HTTrackInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HTTrackInterface.h -------------------------------------------------------------------------------- /WinHTTrack/HtmlCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HtmlCtrl.cpp -------------------------------------------------------------------------------- /WinHTTrack/HtmlCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HtmlCtrl.h -------------------------------------------------------------------------------- /WinHTTrack/HtmlFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HtmlFrm.cpp -------------------------------------------------------------------------------- /WinHTTrack/HtmlFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/HtmlFrm.h -------------------------------------------------------------------------------- /WinHTTrack/InfoUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/InfoUrl.cpp -------------------------------------------------------------------------------- /WinHTTrack/InfoUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/InfoUrl.h -------------------------------------------------------------------------------- /WinHTTrack/Infoend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Infoend.cpp -------------------------------------------------------------------------------- /WinHTTrack/InsertUrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/InsertUrl.cpp -------------------------------------------------------------------------------- /WinHTTrack/InsertUrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/InsertUrl.h -------------------------------------------------------------------------------- /WinHTTrack/Iplog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Iplog.cpp -------------------------------------------------------------------------------- /WinHTTrack/Iplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Iplog.h -------------------------------------------------------------------------------- /WinHTTrack/LaunchHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/LaunchHelp.cpp -------------------------------------------------------------------------------- /WinHTTrack/LaunchHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/LaunchHelp.h -------------------------------------------------------------------------------- /WinHTTrack/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/MainFrm.cpp -------------------------------------------------------------------------------- /WinHTTrack/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/MainFrm.h -------------------------------------------------------------------------------- /WinHTTrack/MainTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/MainTab.cpp -------------------------------------------------------------------------------- /WinHTTrack/MainTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/MainTab.h -------------------------------------------------------------------------------- /WinHTTrack/MemRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/MemRegister.cpp -------------------------------------------------------------------------------- /WinHTTrack/MemRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/MemRegister.h -------------------------------------------------------------------------------- /WinHTTrack/NewFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/NewFolder.cpp -------------------------------------------------------------------------------- /WinHTTrack/NewFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/NewFolder.h -------------------------------------------------------------------------------- /WinHTTrack/NewProj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/NewProj.cpp -------------------------------------------------------------------------------- /WinHTTrack/NewProj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/NewProj.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab1.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab1.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab10.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab10.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab11.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab11.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab2.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab2.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab3.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab3.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab4.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab4.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab5.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab5.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab6.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab6.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab7.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab7.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab8.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab8.h -------------------------------------------------------------------------------- /WinHTTrack/OptionTab9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab9.cpp -------------------------------------------------------------------------------- /WinHTTrack/OptionTab9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/OptionTab9.h -------------------------------------------------------------------------------- /WinHTTrack/ProxyId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/ProxyId.cpp -------------------------------------------------------------------------------- /WinHTTrack/ProxyId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/ProxyId.h -------------------------------------------------------------------------------- /WinHTTrack/RasLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/RasLoad.cpp -------------------------------------------------------------------------------- /WinHTTrack/RasLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/RasLoad.h -------------------------------------------------------------------------------- /WinHTTrack/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Shell.cpp -------------------------------------------------------------------------------- /WinHTTrack/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Shell.h -------------------------------------------------------------------------------- /WinHTTrack/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/StdAfx.cpp -------------------------------------------------------------------------------- /WinHTTrack/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/StdAfx.h -------------------------------------------------------------------------------- /WinHTTrack/TreeViewToolTip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/TreeViewToolTip.cpp -------------------------------------------------------------------------------- /WinHTTrack/TreeViewToolTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/TreeViewToolTip.h -------------------------------------------------------------------------------- /WinHTTrack/Wid1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Wid1.cpp -------------------------------------------------------------------------------- /WinHTTrack/Wid1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Wid1.h -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrack.cpp -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrack.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrack.dsp -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrack.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrack.dsw -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrack.h -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrack.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrack.rc -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrack.sln -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrack.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrack.vcproj -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrackDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrackDoc.cpp -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrackDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrackDoc.h -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrackView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrackView.cpp -------------------------------------------------------------------------------- /WinHTTrack/WinHTTrackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WinHTTrackView.h -------------------------------------------------------------------------------- /WinHTTrack/WizLinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WizLinks.cpp -------------------------------------------------------------------------------- /WinHTTrack/WizLinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WizLinks.h -------------------------------------------------------------------------------- /WinHTTrack/WizTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WizTab.cpp -------------------------------------------------------------------------------- /WinHTTrack/WizTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/WizTab.h -------------------------------------------------------------------------------- /WinHTTrack/Wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Wizard.cpp -------------------------------------------------------------------------------- /WinHTTrack/Wizard2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/Wizard2.cpp -------------------------------------------------------------------------------- /WinHTTrack/XSHBrowseForFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/XSHBrowseForFolder.cpp -------------------------------------------------------------------------------- /WinHTTrack/XSHBrowseForFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/XSHBrowseForFolder.h -------------------------------------------------------------------------------- /WinHTTrack/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/about.cpp -------------------------------------------------------------------------------- /WinHTTrack/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/about.h -------------------------------------------------------------------------------- /WinHTTrack/cpp_lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/cpp_lang.h -------------------------------------------------------------------------------- /WinHTTrack/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/gpl.txt -------------------------------------------------------------------------------- /WinHTTrack/htssystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/htssystem.h -------------------------------------------------------------------------------- /WinHTTrack/infoend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/infoend.h -------------------------------------------------------------------------------- /WinHTTrack/inprogress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/inprogress.cpp -------------------------------------------------------------------------------- /WinHTTrack/inprogress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/inprogress.h -------------------------------------------------------------------------------- /WinHTTrack/newlang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/newlang.cpp -------------------------------------------------------------------------------- /WinHTTrack/newlang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/newlang.h -------------------------------------------------------------------------------- /WinHTTrack/readme.ipv6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/readme.ipv6.htm -------------------------------------------------------------------------------- /WinHTTrack/res/Shell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/Shell.ico -------------------------------------------------------------------------------- /WinHTTrack/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/Toolbar.bmp -------------------------------------------------------------------------------- /WinHTTrack/res/WinHTTrack.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/WinHTTrack.rc2 -------------------------------------------------------------------------------- /WinHTTrack/res/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/ico00001.ico -------------------------------------------------------------------------------- /WinHTTrack/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/icon1.ico -------------------------------------------------------------------------------- /WinHTTrack/res/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/icon2.ico -------------------------------------------------------------------------------- /WinHTTrack/res/icon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/icon3.ico -------------------------------------------------------------------------------- /WinHTTrack/res/icon4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/icon4.ico -------------------------------------------------------------------------------- /WinHTTrack/res/icon5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/icon5.ico -------------------------------------------------------------------------------- /WinHTTrack/res/icon6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/icon6.ico -------------------------------------------------------------------------------- /WinHTTrack/res/idr_main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/idr_main.ico -------------------------------------------------------------------------------- /WinHTTrack/res/mainfram.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/mainfram.bmp -------------------------------------------------------------------------------- /WinHTTrack/res/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/manifest.xml -------------------------------------------------------------------------------- /WinHTTrack/res/www.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/res/www.cur -------------------------------------------------------------------------------- /WinHTTrack/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/resource.h -------------------------------------------------------------------------------- /WinHTTrack/setup_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/setup_license.txt -------------------------------------------------------------------------------- /WinHTTrack/splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/splitter.cpp -------------------------------------------------------------------------------- /WinHTTrack/splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/splitter.h -------------------------------------------------------------------------------- /WinHTTrack/trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/trans.cpp -------------------------------------------------------------------------------- /WinHTTrack/trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/trans.h -------------------------------------------------------------------------------- /WinHTTrack/webhttrack.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/webhttrack.dsp -------------------------------------------------------------------------------- /WinHTTrack/webhttrack.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/webhttrack.dsw -------------------------------------------------------------------------------- /WinHTTrack/wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/wizard.h -------------------------------------------------------------------------------- /WinHTTrack/wizard2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrack/wizard2.h -------------------------------------------------------------------------------- /WinHTTrackIEBar/Shell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/Shell.ico -------------------------------------------------------------------------------- /WinHTTrackIEBar/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/StdAfx.cpp -------------------------------------------------------------------------------- /WinHTTrackIEBar/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/StdAfx.h -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.clw -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.cpp -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.def -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.dsp -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.dsw -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.h -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.idl -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.plg -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.rc -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.tlb -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBar.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBar.vcproj -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBarps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBarps.def -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackIEBarps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackIEBarps.mk -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackLauncher.cpp -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackLauncher.h -------------------------------------------------------------------------------- /WinHTTrackIEBar/WinHTTrackLauncher.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/WinHTTrackLauncher.rgs -------------------------------------------------------------------------------- /WinHTTrackIEBar/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/dlldata.c -------------------------------------------------------------------------------- /WinHTTrackIEBar/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/gpl.txt -------------------------------------------------------------------------------- /WinHTTrackIEBar/projectInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/projectInfo.cpp -------------------------------------------------------------------------------- /WinHTTrackIEBar/projectInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/projectInfo.h -------------------------------------------------------------------------------- /WinHTTrackIEBar/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/resource.h -------------------------------------------------------------------------------- /WinHTTrackIEBar/setup_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/WinHTTrackIEBar/setup_license.txt -------------------------------------------------------------------------------- /htsswf/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/StdAfx.cpp -------------------------------------------------------------------------------- /htsswf/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/StdAfx.h -------------------------------------------------------------------------------- /htsswf/htsswf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/htsswf.cpp -------------------------------------------------------------------------------- /htsswf/htsswf.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/htsswf.dsp -------------------------------------------------------------------------------- /htsswf/htsswf.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/htsswf.dsw -------------------------------------------------------------------------------- /htsswf/htsswf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/htsswf.h -------------------------------------------------------------------------------- /htsswf/htsswf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/htsswf.vcproj -------------------------------------------------------------------------------- /htsswf/setup_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/setup_license.txt -------------------------------------------------------------------------------- /htsswf/swf/swf2html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/htsswf/swf/swf2html.txt -------------------------------------------------------------------------------- /setup_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/setup_license.txt -------------------------------------------------------------------------------- /warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xroche/httrack-windows/HEAD/warning.txt --------------------------------------------------------------------------------