├── .gitignore ├── .vs └── test │ └── v16 │ └── .suo ├── 1.rar ├── 1.stxt ├── 2.rar ├── LICENSE ├── Readme.md ├── collab.hpp ├── diff.hpp ├── filesnap.hpp ├── main.cpp ├── main.rc ├── main2.cpp ├── main2.rc ├── pool.h ├── rw.hpp ├── test.Build.CppClean.log ├── test.log ├── test.sln ├── test.vcxproj ├── test.vcxproj.FileListAbsolute.txt ├── test.vcxproj.filters ├── test.vcxproj.user ├── tpool.h └── usm.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/test/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/.vs/test/v16/.suo -------------------------------------------------------------------------------- /1.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/1.rar -------------------------------------------------------------------------------- /1.stxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/1.stxt -------------------------------------------------------------------------------- /2.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/2.rar -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/Readme.md -------------------------------------------------------------------------------- /collab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/collab.hpp -------------------------------------------------------------------------------- /diff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/diff.hpp -------------------------------------------------------------------------------- /filesnap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/filesnap.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/main.cpp -------------------------------------------------------------------------------- /main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/main.rc -------------------------------------------------------------------------------- /main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/main2.cpp -------------------------------------------------------------------------------- /main2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/main2.rc -------------------------------------------------------------------------------- /pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/pool.h -------------------------------------------------------------------------------- /rw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/rw.hpp -------------------------------------------------------------------------------- /test.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/test.Build.CppClean.log -------------------------------------------------------------------------------- /test.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/test.sln -------------------------------------------------------------------------------- /test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/test.vcxproj -------------------------------------------------------------------------------- /test.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/test.vcxproj.filters -------------------------------------------------------------------------------- /test.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/test.vcxproj.user -------------------------------------------------------------------------------- /tpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/tpool.h -------------------------------------------------------------------------------- /usm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsNT/mt/HEAD/usm.hpp --------------------------------------------------------------------------------