mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-06-02 16:19:50 -04:00
Implement gzip unpacking, fixes #149
This commit is contained in:
parent
aa0ab13411
commit
4dcd6b26a3
34 changed files with 13602 additions and 61 deletions
|
@ -24,6 +24,21 @@ SET(PROJECT_SOURCES
|
|||
../common/sha256.c
|
||||
../common/bstrlib/bstrlib.c
|
||||
../common/bstrlib/bstrwrap.cpp
|
||||
../common/zlib/adler32.c
|
||||
../common/zlib/compress.c
|
||||
../common/zlib/crc32.c
|
||||
../common/zlib/deflate.c
|
||||
../common/zlib/gzclose.c
|
||||
../common/zlib/gzlib.c
|
||||
../common/zlib/gzread.c
|
||||
../common/zlib/gzwrite.c
|
||||
../common/zlib/inflate.c
|
||||
../common/zlib/infback.c
|
||||
../common/zlib/inftrees.c
|
||||
../common/zlib/inffast.c
|
||||
../common/zlib/trees.c
|
||||
../common/zlib/uncompr.c
|
||||
../common/zlib/zutil.c
|
||||
)
|
||||
|
||||
SET(PROJECT_HEADERS
|
||||
|
@ -52,6 +67,17 @@ SET(PROJECT_HEADERS
|
|||
../common/filesystem.h
|
||||
../common/bstrlib/bstrlib.h
|
||||
../common/bstrlib/bstrwrap.h
|
||||
../common/zlib/zconf.h
|
||||
../common/zlib/zlib.h
|
||||
../common/zlib/crc32.h
|
||||
../common/zlib/deflate.h
|
||||
../common/zlib/gzguts.h
|
||||
../common/zlib/inffast.h
|
||||
../common/zlib/inffixed.h
|
||||
../common/zlib/inflate.h
|
||||
../common/zlib/inftrees.h
|
||||
../common/zlib/trees.h
|
||||
../common/zlib/zutil.h
|
||||
../version.h
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue