mirror of https://github.com/libAthena/athena.git
* Fix building
This commit is contained in:
parent
e86d64e7bb
commit
89151ed3c8
|
@ -0,0 +1,17 @@
|
|||
#ifndef COMPRESSION_HPP
|
||||
#define COMPRESSION_HPP
|
||||
|
||||
#include <Types.hpp>
|
||||
|
||||
namespace zelda
|
||||
{
|
||||
namespace io
|
||||
{
|
||||
namespace Compression
|
||||
{
|
||||
Int32 decompressZlib(Uint8* src, Uint32 srcLen, Uint8* dst, Uint32 dstLen);
|
||||
void compressZlib(const Uint8* src, Uint32 srcLen, Uint8* dst, Uint32* dstLen);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif // COMPRESSION_HPP
|
|
@ -41,7 +41,8 @@ HEADERS += \
|
|||
include/MCFileWriter.hpp \
|
||||
include/ZQuestFileWriter.hpp \
|
||||
include/ZQuestFileReader.hpp \
|
||||
include/ZQuest.hpp
|
||||
include/ZQuest.hpp \
|
||||
include/Compression.hpp
|
||||
|
||||
SOURCES += \
|
||||
src/utility.cpp \
|
||||
|
@ -66,8 +67,6 @@ SOURCES += \
|
|||
src/MCFileReader.cpp \
|
||||
src/MCFile.cpp \
|
||||
src/MCFileWriter.cpp \
|
||||
src/RARCFileReader.cpp \
|
||||
src/RARCFileEntry.cpp \
|
||||
src/ZQuestFileWriter.cpp \
|
||||
src/ZQuestFileReader.cpp \
|
||||
src/ZQuest.cpp
|
||||
|
|
Loading…
Reference in New Issue