r5sdk/r5dev/rtech/pak/pakencode.h
Kawe Mazidjatari 7a03238fc9 RTech: add simple pak encoder command
Encodes a pak file with ZSTD.
2024-04-05 17:54:06 +02:00

10 lines
317 B
C

#ifndef RTECH_PAKENCODE_H
#define RTECH_PAKENCODE_H
bool Pak_EncodePak(const uint8_t* const inBuf, const uint64_t inLen,
uint8_t* const outBuf, const uint64_t outLen, const int level);
bool Pak_EncodePakFile(const char* const inPakFile, const char* const outPakFile, const int level);
#endif // RTECH_PAKENCODE_H