blob: e299d44014c107aea51e31e6dea07d7915e13753 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#if defined(__cplusplus)
extern "C" {
#endif
struct TLZ4Methods {
int (*LZ4CompressLimited)(const char* source, char* dest, int isize, int maxOut);
};
struct TLZ4Methods* LZ4Methods(int memory);
#if defined(__cplusplus)
}
#endif
|