├── .gitignore ├── CMakeLists.txt ├── Dump ├── CMakeLists.txt └── PPDBDump.cpp ├── Reader ├── CMakeLists.txt ├── CoreReader.cpp ├── Streams.cpp └── Tables.cpp ├── inc ├── PPDBReader.hpp └── platform.hpp └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | bin 3 | obj 4 | *~ 5 | .idea -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/Dump/CMakeLists.txt -------------------------------------------------------------------------------- /Dump/PPDBDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/Dump/PPDBDump.cpp -------------------------------------------------------------------------------- /Reader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/Reader/CMakeLists.txt -------------------------------------------------------------------------------- /Reader/CoreReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/Reader/CoreReader.cpp -------------------------------------------------------------------------------- /Reader/Streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/Reader/Streams.cpp -------------------------------------------------------------------------------- /Reader/Tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/Reader/Tables.cpp -------------------------------------------------------------------------------- /inc/PPDBReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/inc/PPDBReader.hpp -------------------------------------------------------------------------------- /inc/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/inc/platform.hpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/PPDB/HEAD/readme.md --------------------------------------------------------------------------------