├── Doxyfile ├── LICENSE ├── README ├── dllmain.cpp ├── reparselib.cpp ├── reparselib.h ├── reparselib.vcxproj ├── reparselib.vcxproj.user ├── stdafx.cpp ├── stdafx.h ├── symlink.cpp └── targetver.h /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /reparselib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/reparselib.cpp -------------------------------------------------------------------------------- /reparselib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/reparselib.h -------------------------------------------------------------------------------- /reparselib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/reparselib.vcxproj -------------------------------------------------------------------------------- /reparselib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/reparselib.vcxproj.user -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/stdafx.h -------------------------------------------------------------------------------- /symlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/reparselib/HEAD/symlink.cpp -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | --------------------------------------------------------------------------------