├── .gitignore ├── Bug description.doc ├── README.md ├── readfile.sln ├── readfile ├── FileOpLock.cpp ├── FileOpLock.h ├── Readfile.cpp ├── ReparsePoint.cpp ├── ReparsePoint.h ├── ScopedHandle.cpp ├── ScopedHandle.h ├── ntimports.h ├── readfile.filters ├── readfile.user ├── readfile.vcxproj ├── readfile.vcxproj.user ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── typed_buffer.h └── x64 └── Release ├── Readfile.exe └── file /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/* -------------------------------------------------------------------------------- /Bug description.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/Bug description.doc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/README.md -------------------------------------------------------------------------------- /readfile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile.sln -------------------------------------------------------------------------------- /readfile/FileOpLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/FileOpLock.cpp -------------------------------------------------------------------------------- /readfile/FileOpLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/FileOpLock.h -------------------------------------------------------------------------------- /readfile/Readfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/Readfile.cpp -------------------------------------------------------------------------------- /readfile/ReparsePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/ReparsePoint.cpp -------------------------------------------------------------------------------- /readfile/ReparsePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/ReparsePoint.h -------------------------------------------------------------------------------- /readfile/ScopedHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/ScopedHandle.cpp -------------------------------------------------------------------------------- /readfile/ScopedHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/ScopedHandle.h -------------------------------------------------------------------------------- /readfile/ntimports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/ntimports.h -------------------------------------------------------------------------------- /readfile/readfile.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/readfile.filters -------------------------------------------------------------------------------- /readfile/readfile.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/readfile.user -------------------------------------------------------------------------------- /readfile/readfile.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/readfile.vcxproj -------------------------------------------------------------------------------- /readfile/readfile.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/readfile.vcxproj.user -------------------------------------------------------------------------------- /readfile/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/stdafx.cpp -------------------------------------------------------------------------------- /readfile/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/stdafx.h -------------------------------------------------------------------------------- /readfile/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/targetver.h -------------------------------------------------------------------------------- /readfile/typed_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/readfile/typed_buffer.h -------------------------------------------------------------------------------- /x64/Release/Readfile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/x64/Release/Readfile.exe -------------------------------------------------------------------------------- /x64/Release/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WBGlIl/windows_Readfile_exp/HEAD/x64/Release/file --------------------------------------------------------------------------------