├── FastCopy.sln ├── FastCopy.vcxproj ├── doc ├── license-gpl3.txt ├── readme.txt ├── readme_eng.txt └── xxhash-LICENSE.txt ├── external ├── xxhash │ ├── LICENSE │ ├── xxhash.c │ ├── xxhash.h │ └── xxhash.vcxproj └── zlib │ ├── FAQ │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.def │ ├── zlib.h │ ├── zlib.vcxproj │ ├── zlib1.rc │ ├── zutil.c │ └── zutil.h ├── help ├── fastcopy.hhc ├── fastcopy.hhk ├── fastcopy.hhp ├── fastcopy.htm ├── fastcopy_eng.htm ├── license-gpl3.txt └── xxhash-LICENSE.txt └── src ├── TLib ├── TLib.vcxproj ├── ipdict.cpp ├── ipdict.h ├── scopeexit.h ├── tads.cpp ├── tapi32ex.cpp ├── tapi32ex.h ├── tapi32u8.cpp ├── tapi32u8.h ├── tapp.cpp ├── tcmndlg.cpp ├── tcmndlg.h ├── tdlg.cpp ├── texcept.cpp ├── texcept.h ├── tgdiplus.cpp ├── tgdiplus.h ├── tinet.cpp ├── tinet.h ├── tini.cpp ├── tlib.h ├── tmisc.cpp ├── tmisc.h ├── tregist.cpp ├── tstr.cpp ├── tstr.h └── twin.cpp ├── cfg.cpp ├── cfg.h ├── fastcopy.cpp ├── fastcopy.exe.manifest ├── fastcopy.h ├── fastcopy.rc ├── fastcopyd.cpp ├── fastcopyr.cpp ├── fastcopyw.cpp ├── install ├── install.cpp ├── install.h ├── install.rc ├── install.vcxproj ├── resource.h ├── setup.exe.manifest └── setup.ico ├── mainwin.cpp ├── mainwin.h ├── mainwinev.cpp ├── mainwinlog.cpp ├── mainwinopt.cpp ├── mainwinopt.h ├── mainwinupd.cpp ├── miscdlg.cpp ├── miscdlg.h ├── regexp.cpp ├── regexp.h ├── res ├── fastcopy.ico ├── fastcopy2.ico ├── fastcopy3.ico ├── fastcopy4.ico ├── fcdone.ico ├── fcerr.ico ├── fcwait.ico ├── menu.ico ├── pause.ico ├── play.ico ├── sep.cur └── tray.gif ├── resource.h ├── setupdlg.cpp ├── setupdlg.h ├── shareinfo.cpp ├── shareinfo.h ├── shellext ├── FastEx64.dll.manifest ├── fcshext.ico ├── resource.h ├── shell64.def ├── shelldef.h ├── shellext.cpp ├── shellext.def ├── shellext.h ├── shellext.rc └── shellext.vcxproj ├── tlib_env.h ├── utility.cpp ├── utility.h ├── version.cpp └── version.h /FastCopy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/FastCopy.sln -------------------------------------------------------------------------------- /FastCopy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/FastCopy.vcxproj -------------------------------------------------------------------------------- /doc/license-gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/doc/license-gpl3.txt -------------------------------------------------------------------------------- /doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/doc/readme.txt -------------------------------------------------------------------------------- /doc/readme_eng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/doc/readme_eng.txt -------------------------------------------------------------------------------- /doc/xxhash-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/doc/xxhash-LICENSE.txt -------------------------------------------------------------------------------- /external/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/xxhash/LICENSE -------------------------------------------------------------------------------- /external/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/xxhash/xxhash.c -------------------------------------------------------------------------------- /external/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/xxhash/xxhash.h -------------------------------------------------------------------------------- /external/xxhash/xxhash.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/xxhash/xxhash.vcxproj -------------------------------------------------------------------------------- /external/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/FAQ -------------------------------------------------------------------------------- /external/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/README -------------------------------------------------------------------------------- /external/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/adler32.c -------------------------------------------------------------------------------- /external/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/compress.c -------------------------------------------------------------------------------- /external/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/crc32.c -------------------------------------------------------------------------------- /external/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/crc32.h -------------------------------------------------------------------------------- /external/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/deflate.c -------------------------------------------------------------------------------- /external/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/deflate.h -------------------------------------------------------------------------------- /external/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/gzclose.c -------------------------------------------------------------------------------- /external/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/gzguts.h -------------------------------------------------------------------------------- /external/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/gzlib.c -------------------------------------------------------------------------------- /external/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/gzread.c -------------------------------------------------------------------------------- /external/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/gzwrite.c -------------------------------------------------------------------------------- /external/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/infback.c -------------------------------------------------------------------------------- /external/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/inffast.c -------------------------------------------------------------------------------- /external/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/inffast.h -------------------------------------------------------------------------------- /external/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/inffixed.h -------------------------------------------------------------------------------- /external/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/inflate.c -------------------------------------------------------------------------------- /external/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/inflate.h -------------------------------------------------------------------------------- /external/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/inftrees.c -------------------------------------------------------------------------------- /external/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/inftrees.h -------------------------------------------------------------------------------- /external/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/trees.c -------------------------------------------------------------------------------- /external/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/trees.h -------------------------------------------------------------------------------- /external/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/uncompr.c -------------------------------------------------------------------------------- /external/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/zconf.h -------------------------------------------------------------------------------- /external/zlib/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/zlib.def -------------------------------------------------------------------------------- /external/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/zlib.h -------------------------------------------------------------------------------- /external/zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /external/zlib/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/zlib1.rc -------------------------------------------------------------------------------- /external/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/zutil.c -------------------------------------------------------------------------------- /external/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/external/zlib/zutil.h -------------------------------------------------------------------------------- /help/fastcopy.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/help/fastcopy.hhc -------------------------------------------------------------------------------- /help/fastcopy.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/help/fastcopy.hhk -------------------------------------------------------------------------------- /help/fastcopy.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/help/fastcopy.hhp -------------------------------------------------------------------------------- /help/fastcopy.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/help/fastcopy.htm -------------------------------------------------------------------------------- /help/fastcopy_eng.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/help/fastcopy_eng.htm -------------------------------------------------------------------------------- /help/license-gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/help/license-gpl3.txt -------------------------------------------------------------------------------- /help/xxhash-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/help/xxhash-LICENSE.txt -------------------------------------------------------------------------------- /src/TLib/TLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/TLib.vcxproj -------------------------------------------------------------------------------- /src/TLib/ipdict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/ipdict.cpp -------------------------------------------------------------------------------- /src/TLib/ipdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/ipdict.h -------------------------------------------------------------------------------- /src/TLib/scopeexit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/scopeexit.h -------------------------------------------------------------------------------- /src/TLib/tads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tads.cpp -------------------------------------------------------------------------------- /src/TLib/tapi32ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tapi32ex.cpp -------------------------------------------------------------------------------- /src/TLib/tapi32ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tapi32ex.h -------------------------------------------------------------------------------- /src/TLib/tapi32u8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tapi32u8.cpp -------------------------------------------------------------------------------- /src/TLib/tapi32u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tapi32u8.h -------------------------------------------------------------------------------- /src/TLib/tapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tapp.cpp -------------------------------------------------------------------------------- /src/TLib/tcmndlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tcmndlg.cpp -------------------------------------------------------------------------------- /src/TLib/tcmndlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tcmndlg.h -------------------------------------------------------------------------------- /src/TLib/tdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tdlg.cpp -------------------------------------------------------------------------------- /src/TLib/texcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/texcept.cpp -------------------------------------------------------------------------------- /src/TLib/texcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/texcept.h -------------------------------------------------------------------------------- /src/TLib/tgdiplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tgdiplus.cpp -------------------------------------------------------------------------------- /src/TLib/tgdiplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tgdiplus.h -------------------------------------------------------------------------------- /src/TLib/tinet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tinet.cpp -------------------------------------------------------------------------------- /src/TLib/tinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tinet.h -------------------------------------------------------------------------------- /src/TLib/tini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tini.cpp -------------------------------------------------------------------------------- /src/TLib/tlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tlib.h -------------------------------------------------------------------------------- /src/TLib/tmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tmisc.cpp -------------------------------------------------------------------------------- /src/TLib/tmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tmisc.h -------------------------------------------------------------------------------- /src/TLib/tregist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tregist.cpp -------------------------------------------------------------------------------- /src/TLib/tstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tstr.cpp -------------------------------------------------------------------------------- /src/TLib/tstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/tstr.h -------------------------------------------------------------------------------- /src/TLib/twin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/TLib/twin.cpp -------------------------------------------------------------------------------- /src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/cfg.cpp -------------------------------------------------------------------------------- /src/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/cfg.h -------------------------------------------------------------------------------- /src/fastcopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/fastcopy.cpp -------------------------------------------------------------------------------- /src/fastcopy.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/fastcopy.exe.manifest -------------------------------------------------------------------------------- /src/fastcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/fastcopy.h -------------------------------------------------------------------------------- /src/fastcopy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/fastcopy.rc -------------------------------------------------------------------------------- /src/fastcopyd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/fastcopyd.cpp -------------------------------------------------------------------------------- /src/fastcopyr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/fastcopyr.cpp -------------------------------------------------------------------------------- /src/fastcopyw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/fastcopyw.cpp -------------------------------------------------------------------------------- /src/install/install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/install/install.cpp -------------------------------------------------------------------------------- /src/install/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/install/install.h -------------------------------------------------------------------------------- /src/install/install.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/install/install.rc -------------------------------------------------------------------------------- /src/install/install.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/install/install.vcxproj -------------------------------------------------------------------------------- /src/install/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/install/resource.h -------------------------------------------------------------------------------- /src/install/setup.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/install/setup.exe.manifest -------------------------------------------------------------------------------- /src/install/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/install/setup.ico -------------------------------------------------------------------------------- /src/mainwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/mainwin.cpp -------------------------------------------------------------------------------- /src/mainwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/mainwin.h -------------------------------------------------------------------------------- /src/mainwinev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/mainwinev.cpp -------------------------------------------------------------------------------- /src/mainwinlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/mainwinlog.cpp -------------------------------------------------------------------------------- /src/mainwinopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/mainwinopt.cpp -------------------------------------------------------------------------------- /src/mainwinopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/mainwinopt.h -------------------------------------------------------------------------------- /src/mainwinupd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/mainwinupd.cpp -------------------------------------------------------------------------------- /src/miscdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/miscdlg.cpp -------------------------------------------------------------------------------- /src/miscdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/miscdlg.h -------------------------------------------------------------------------------- /src/regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/regexp.cpp -------------------------------------------------------------------------------- /src/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/regexp.h -------------------------------------------------------------------------------- /src/res/fastcopy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/fastcopy.ico -------------------------------------------------------------------------------- /src/res/fastcopy2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/fastcopy2.ico -------------------------------------------------------------------------------- /src/res/fastcopy3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/fastcopy3.ico -------------------------------------------------------------------------------- /src/res/fastcopy4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/fastcopy4.ico -------------------------------------------------------------------------------- /src/res/fcdone.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/fcdone.ico -------------------------------------------------------------------------------- /src/res/fcerr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/fcerr.ico -------------------------------------------------------------------------------- /src/res/fcwait.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/fcwait.ico -------------------------------------------------------------------------------- /src/res/menu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/menu.ico -------------------------------------------------------------------------------- /src/res/pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/pause.ico -------------------------------------------------------------------------------- /src/res/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/play.ico -------------------------------------------------------------------------------- /src/res/sep.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/sep.cur -------------------------------------------------------------------------------- /src/res/tray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/res/tray.gif -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/setupdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/setupdlg.cpp -------------------------------------------------------------------------------- /src/setupdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/setupdlg.h -------------------------------------------------------------------------------- /src/shareinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shareinfo.cpp -------------------------------------------------------------------------------- /src/shareinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shareinfo.h -------------------------------------------------------------------------------- /src/shellext/FastEx64.dll.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/FastEx64.dll.manifest -------------------------------------------------------------------------------- /src/shellext/fcshext.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/fcshext.ico -------------------------------------------------------------------------------- /src/shellext/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/resource.h -------------------------------------------------------------------------------- /src/shellext/shell64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/shell64.def -------------------------------------------------------------------------------- /src/shellext/shelldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/shelldef.h -------------------------------------------------------------------------------- /src/shellext/shellext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/shellext.cpp -------------------------------------------------------------------------------- /src/shellext/shellext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/shellext.def -------------------------------------------------------------------------------- /src/shellext/shellext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/shellext.h -------------------------------------------------------------------------------- /src/shellext/shellext.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/shellext.rc -------------------------------------------------------------------------------- /src/shellext/shellext.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/shellext/shellext.vcxproj -------------------------------------------------------------------------------- /src/tlib_env.h: -------------------------------------------------------------------------------- 1 | #define USE_XXHASH 2 | -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/utility.h -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shirouzu/FastCopy/HEAD/src/version.h --------------------------------------------------------------------------------