You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
362 B
16 lines
362 B
/** |
|
* @file encrypt.h |
|
* |
|
* Interface of functions for compression and decompressing MPQ data. |
|
*/ |
|
#pragma once |
|
|
|
#include <cstddef> |
|
#include <cstdint> |
|
|
|
namespace devilution { |
|
|
|
uint32_t PkwareCompress(std::byte *srcData, uint32_t size); |
|
uint32_t PkwareDecompress(std::byte *inBuff, uint32_t recvSize, size_t maxBytes); |
|
|
|
} // namespace devilution
|
|
|