├── AES.cpp ├── AES.h ├── BinReader.cpp ├── BinReader.h ├── FileMapping.cpp ├── FileMapping.h ├── FileUt.cpp ├── FileUt.h ├── Main.cpp ├── MemLeaks.h ├── README.md ├── WZ.cpp ├── WZ.h ├── WzLib.sln ├── WzLib.vcproj ├── WzLib.vcxproj ├── WzLib.vcxproj.filters ├── WzNode.cpp ├── WzNode.h └── ZLIB ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/AES.cpp -------------------------------------------------------------------------------- /AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/AES.h -------------------------------------------------------------------------------- /BinReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/BinReader.cpp -------------------------------------------------------------------------------- /BinReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/BinReader.h -------------------------------------------------------------------------------- /FileMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/FileMapping.cpp -------------------------------------------------------------------------------- /FileMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/FileMapping.h -------------------------------------------------------------------------------- /FileUt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/FileUt.cpp -------------------------------------------------------------------------------- /FileUt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/FileUt.h -------------------------------------------------------------------------------- /Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/Main.cpp -------------------------------------------------------------------------------- /MemLeaks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/MemLeaks.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WzLib 2 | Another MapleStory .wz file parser written in C++ -------------------------------------------------------------------------------- /WZ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WZ.cpp -------------------------------------------------------------------------------- /WZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WZ.h -------------------------------------------------------------------------------- /WzLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WzLib.sln -------------------------------------------------------------------------------- /WzLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WzLib.vcproj -------------------------------------------------------------------------------- /WzLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WzLib.vcxproj -------------------------------------------------------------------------------- /WzLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WzLib.vcxproj.filters -------------------------------------------------------------------------------- /WzNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WzNode.cpp -------------------------------------------------------------------------------- /WzNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/WzNode.h -------------------------------------------------------------------------------- /ZLIB/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/adler32.c -------------------------------------------------------------------------------- /ZLIB/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/compress.c -------------------------------------------------------------------------------- /ZLIB/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/crc32.c -------------------------------------------------------------------------------- /ZLIB/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/crc32.h -------------------------------------------------------------------------------- /ZLIB/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/deflate.c -------------------------------------------------------------------------------- /ZLIB/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/deflate.h -------------------------------------------------------------------------------- /ZLIB/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/gzclose.c -------------------------------------------------------------------------------- /ZLIB/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/gzguts.h -------------------------------------------------------------------------------- /ZLIB/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/gzlib.c -------------------------------------------------------------------------------- /ZLIB/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/gzread.c -------------------------------------------------------------------------------- /ZLIB/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/gzwrite.c -------------------------------------------------------------------------------- /ZLIB/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/infback.c -------------------------------------------------------------------------------- /ZLIB/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/inffast.c -------------------------------------------------------------------------------- /ZLIB/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/inffast.h -------------------------------------------------------------------------------- /ZLIB/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/inffixed.h -------------------------------------------------------------------------------- /ZLIB/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/inflate.c -------------------------------------------------------------------------------- /ZLIB/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/inflate.h -------------------------------------------------------------------------------- /ZLIB/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/inftrees.c -------------------------------------------------------------------------------- /ZLIB/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/inftrees.h -------------------------------------------------------------------------------- /ZLIB/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/trees.c -------------------------------------------------------------------------------- /ZLIB/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/trees.h -------------------------------------------------------------------------------- /ZLIB/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/uncompr.c -------------------------------------------------------------------------------- /ZLIB/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/zconf.h -------------------------------------------------------------------------------- /ZLIB/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/zlib.h -------------------------------------------------------------------------------- /ZLIB/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/zutil.c -------------------------------------------------------------------------------- /ZLIB/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anydream/WzLib/HEAD/ZLIB/zutil.h --------------------------------------------------------------------------------