mirror of
https://github.com/libAthena/athena.git
synced 2025-12-16 08:27:08 +00:00
* Fix building
This commit is contained in:
17
include/Compression.hpp
Normal file
17
include/Compression.hpp
Normal file
@@ -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/MCFileWriter.hpp \
|
||||||
include/ZQuestFileWriter.hpp \
|
include/ZQuestFileWriter.hpp \
|
||||||
include/ZQuestFileReader.hpp \
|
include/ZQuestFileReader.hpp \
|
||||||
include/ZQuest.hpp
|
include/ZQuest.hpp \
|
||||||
|
include/Compression.hpp
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
src/utility.cpp \
|
src/utility.cpp \
|
||||||
@@ -66,8 +67,6 @@ SOURCES += \
|
|||||||
src/MCFileReader.cpp \
|
src/MCFileReader.cpp \
|
||||||
src/MCFile.cpp \
|
src/MCFile.cpp \
|
||||||
src/MCFileWriter.cpp \
|
src/MCFileWriter.cpp \
|
||||||
src/RARCFileReader.cpp \
|
|
||||||
src/RARCFileEntry.cpp \
|
|
||||||
src/ZQuestFileWriter.cpp \
|
src/ZQuestFileWriter.cpp \
|
||||||
src/ZQuestFileReader.cpp \
|
src/ZQuestFileReader.cpp \
|
||||||
src/ZQuest.cpp
|
src/ZQuest.cpp
|
||||||
|
|||||||
Reference in New Issue
Block a user