├── .gitignore ├── FastCopy.mak ├── FastCopy.mdp ├── FastCopy.sln ├── FastCopy.vcproj ├── FastCopy.vcxproj ├── README.md ├── help ├── Index.hhk ├── email2.png ├── fastcopy.hhc ├── fastcopy.hhk ├── fastcopy.hhp ├── fastcopy.htm └── fastcopy_eng.htm ├── install.vcproj ├── install.vcxproj ├── readme.txt ├── readme_eng.txt ├── shellex64.vcproj ├── shellex64.vcxproj ├── shellext.vcproj ├── shellext.vcxproj └── src ├── cfg.cpp ├── cfg.h ├── fastcopy.cpp ├── fastcopy.exe.manifest ├── fastcopy.h ├── fastcopy.ico ├── fastcopy.rc ├── fastcopy2.ico ├── fastcopy3.ico ├── fastcopy4.ico ├── fcwait.ico ├── install ├── install.cpp ├── install.h ├── install.rc ├── instrc.h ├── setup.exe.manifest └── setup.ico ├── mainwin.cpp ├── mainwin.h ├── miscdlg.cpp ├── miscdlg.h ├── regexp.cpp ├── regexp.h ├── resource.h ├── shellext ├── FastEx64.dll.manifest ├── resource.h ├── shell64.def ├── shelldef.h ├── shellext.cpp ├── shellext.def ├── shellext.h └── shellext.rc ├── tlib ├── tapi32ex.cpp ├── tapi32ex.h ├── tapi32u8.cpp ├── tapi32u8.h ├── tapi32v.cpp ├── tapi32v.h ├── tapp.cpp ├── tdlg.cpp ├── tini.cpp ├── tlib.h ├── tlist.cpp ├── tmisc.cpp ├── tregist.cpp └── twin.cpp ├── utility.cpp ├── utility.h ├── version.cpp └── version.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/.gitignore -------------------------------------------------------------------------------- /FastCopy.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/FastCopy.mak -------------------------------------------------------------------------------- /FastCopy.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/FastCopy.mdp -------------------------------------------------------------------------------- /FastCopy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/FastCopy.sln -------------------------------------------------------------------------------- /FastCopy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/FastCopy.vcproj -------------------------------------------------------------------------------- /FastCopy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/FastCopy.vcxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/README.md -------------------------------------------------------------------------------- /help/Index.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/help/Index.hhk -------------------------------------------------------------------------------- /help/email2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/help/email2.png -------------------------------------------------------------------------------- /help/fastcopy.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/help/fastcopy.hhc -------------------------------------------------------------------------------- /help/fastcopy.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/help/fastcopy.hhk -------------------------------------------------------------------------------- /help/fastcopy.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/help/fastcopy.hhp -------------------------------------------------------------------------------- /help/fastcopy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/help/fastcopy.htm -------------------------------------------------------------------------------- /help/fastcopy_eng.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/help/fastcopy_eng.htm -------------------------------------------------------------------------------- /install.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/install.vcproj -------------------------------------------------------------------------------- /install.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/install.vcxproj -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/readme.txt -------------------------------------------------------------------------------- /readme_eng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/readme_eng.txt -------------------------------------------------------------------------------- /shellex64.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/shellex64.vcproj -------------------------------------------------------------------------------- /shellex64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/shellex64.vcxproj -------------------------------------------------------------------------------- /shellext.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/shellext.vcproj -------------------------------------------------------------------------------- /shellext.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/shellext.vcxproj -------------------------------------------------------------------------------- /src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/cfg.cpp -------------------------------------------------------------------------------- /src/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/cfg.h -------------------------------------------------------------------------------- /src/fastcopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy.cpp -------------------------------------------------------------------------------- /src/fastcopy.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy.exe.manifest -------------------------------------------------------------------------------- /src/fastcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy.h -------------------------------------------------------------------------------- /src/fastcopy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy.ico -------------------------------------------------------------------------------- /src/fastcopy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy.rc -------------------------------------------------------------------------------- /src/fastcopy2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy2.ico -------------------------------------------------------------------------------- /src/fastcopy3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy3.ico -------------------------------------------------------------------------------- /src/fastcopy4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fastcopy4.ico -------------------------------------------------------------------------------- /src/fcwait.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/fcwait.ico -------------------------------------------------------------------------------- /src/install/install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/install/install.cpp -------------------------------------------------------------------------------- /src/install/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/install/install.h -------------------------------------------------------------------------------- /src/install/install.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/install/install.rc -------------------------------------------------------------------------------- /src/install/instrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/install/instrc.h -------------------------------------------------------------------------------- /src/install/setup.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/install/setup.exe.manifest -------------------------------------------------------------------------------- /src/install/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/install/setup.ico -------------------------------------------------------------------------------- /src/mainwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/mainwin.cpp -------------------------------------------------------------------------------- /src/mainwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/mainwin.h -------------------------------------------------------------------------------- /src/miscdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/miscdlg.cpp -------------------------------------------------------------------------------- /src/miscdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/miscdlg.h -------------------------------------------------------------------------------- /src/regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/regexp.cpp -------------------------------------------------------------------------------- /src/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/regexp.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/shellext/FastEx64.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/FastEx64.dll.manifest -------------------------------------------------------------------------------- /src/shellext/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/resource.h -------------------------------------------------------------------------------- /src/shellext/shell64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/shell64.def -------------------------------------------------------------------------------- /src/shellext/shelldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/shelldef.h -------------------------------------------------------------------------------- /src/shellext/shellext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/shellext.cpp -------------------------------------------------------------------------------- /src/shellext/shellext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/shellext.def -------------------------------------------------------------------------------- /src/shellext/shellext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/shellext.h -------------------------------------------------------------------------------- /src/shellext/shellext.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/shellext/shellext.rc -------------------------------------------------------------------------------- /src/tlib/tapi32ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tapi32ex.cpp -------------------------------------------------------------------------------- /src/tlib/tapi32ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tapi32ex.h -------------------------------------------------------------------------------- /src/tlib/tapi32u8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tapi32u8.cpp -------------------------------------------------------------------------------- /src/tlib/tapi32u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tapi32u8.h -------------------------------------------------------------------------------- /src/tlib/tapi32v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tapi32v.cpp -------------------------------------------------------------------------------- /src/tlib/tapi32v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tapi32v.h -------------------------------------------------------------------------------- /src/tlib/tapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tapp.cpp -------------------------------------------------------------------------------- /src/tlib/tdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tdlg.cpp -------------------------------------------------------------------------------- /src/tlib/tini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tini.cpp -------------------------------------------------------------------------------- /src/tlib/tlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tlib.h -------------------------------------------------------------------------------- /src/tlib/tlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tlist.cpp -------------------------------------------------------------------------------- /src/tlib/tmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tmisc.cpp -------------------------------------------------------------------------------- /src/tlib/tregist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/tregist.cpp -------------------------------------------------------------------------------- /src/tlib/twin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/tlib/twin.cpp -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/utility.h -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurent22/fastcopy/HEAD/src/version.h --------------------------------------------------------------------------------