├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── makefile ├── samples ├── IEOpenedTabParser │ ├── IEOpenedTabParser.h │ └── openedtab.cpp └── cfb │ └── cfb.cpp ├── src └── include │ ├── compoundfilereader.h │ └── utf.h ├── test └── data │ ├── 1.dat │ ├── 2.dat │ ├── a test email message.msg │ ├── unicode.dat │ ├── {B85C5677-E8BC-11E4-825B-10604B7CB9F0}.dat │ ├── {BC59C035-E8AC-11E4-825B-10604B7CB9F0}.dat │ └── {FE554E21-EA21-11E4-825B-10604B7CB9F0}.dat └── vsproject └── cfbreader ├── IEOpenedTabParser ├── IEOpenedTabParser.vcxproj └── IEOpenedTabParser.vcxproj.filters ├── cfb ├── cfb.vcxproj └── cfb.vcxproj.filters └── cfbreader.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/SECURITY.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/makefile -------------------------------------------------------------------------------- /samples/IEOpenedTabParser/IEOpenedTabParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/samples/IEOpenedTabParser/IEOpenedTabParser.h -------------------------------------------------------------------------------- /samples/IEOpenedTabParser/openedtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/samples/IEOpenedTabParser/openedtab.cpp -------------------------------------------------------------------------------- /samples/cfb/cfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/samples/cfb/cfb.cpp -------------------------------------------------------------------------------- /src/include/compoundfilereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/src/include/compoundfilereader.h -------------------------------------------------------------------------------- /src/include/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/src/include/utf.h -------------------------------------------------------------------------------- /test/data/1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/test/data/1.dat -------------------------------------------------------------------------------- /test/data/2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/test/data/2.dat -------------------------------------------------------------------------------- /test/data/a test email message.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/test/data/a test email message.msg -------------------------------------------------------------------------------- /test/data/unicode.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/test/data/unicode.dat -------------------------------------------------------------------------------- /test/data/{B85C5677-E8BC-11E4-825B-10604B7CB9F0}.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/test/data/{B85C5677-E8BC-11E4-825B-10604B7CB9F0}.dat -------------------------------------------------------------------------------- /test/data/{BC59C035-E8AC-11E4-825B-10604B7CB9F0}.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/test/data/{BC59C035-E8AC-11E4-825B-10604B7CB9F0}.dat -------------------------------------------------------------------------------- /test/data/{FE554E21-EA21-11E4-825B-10604B7CB9F0}.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/test/data/{FE554E21-EA21-11E4-825B-10604B7CB9F0}.dat -------------------------------------------------------------------------------- /vsproject/cfbreader/IEOpenedTabParser/IEOpenedTabParser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/vsproject/cfbreader/IEOpenedTabParser/IEOpenedTabParser.vcxproj -------------------------------------------------------------------------------- /vsproject/cfbreader/IEOpenedTabParser/IEOpenedTabParser.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/vsproject/cfbreader/IEOpenedTabParser/IEOpenedTabParser.vcxproj.filters -------------------------------------------------------------------------------- /vsproject/cfbreader/cfb/cfb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/vsproject/cfbreader/cfb/cfb.vcxproj -------------------------------------------------------------------------------- /vsproject/cfbreader/cfb/cfb.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/vsproject/cfbreader/cfb/cfb.vcxproj.filters -------------------------------------------------------------------------------- /vsproject/cfbreader/cfbreader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/compoundfilereader/HEAD/vsproject/cfbreader/cfbreader.sln --------------------------------------------------------------------------------