mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
10 lines
317 B
C
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
|