diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-11-02 22:08:43 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-11-02 22:08:43 +0100 |
| commit | 27cf5c81b238d763970e989d5b89ceee4da8c2d8 (patch) | |
| tree | e4ce3e08c93cf6733b0c48d526609ea2032c6220 /src/wrapped/generated/wrappedlibztypes.h | |
| parent | 323783bf49909bb4781a9979074d51b2d59672fd (diff) | |
| download | box64-27cf5c81b238d763970e989d5b89ceee4da8c2d8.tar.gz box64-27cf5c81b238d763970e989d5b89ceee4da8c2d8.zip | |
Better wrapping for libz inflate
Diffstat (limited to 'src/wrapped/generated/wrappedlibztypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibztypes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wrapped/generated/wrappedlibztypes.h b/src/wrapped/generated/wrappedlibztypes.h index f3432c7c..e2c4742d 100644 --- a/src/wrapped/generated/wrappedlibztypes.h +++ b/src/wrapped/generated/wrappedlibztypes.h @@ -12,6 +12,7 @@ #endif typedef int64_t (*iFp_t)(void*); +typedef int64_t (*iFpi_t)(void*, int64_t); typedef int64_t (*iFppi_t)(void*, void*, int64_t); typedef int64_t (*iFpipi_t)(void*, int64_t, void*, int64_t); typedef int64_t (*iFpippi_t)(void*, int64_t, void*, void*, int64_t); @@ -20,6 +21,7 @@ typedef int64_t (*iFpiiiiipi_t)(void*, int64_t, int64_t, int64_t, int64_t, int64 #define SUPER() ADDED_FUNCTIONS() \ GO(deflateEnd, iFp_t) \ GO(inflateEnd, iFp_t) \ + GO(inflate, iFpi_t) \ GO(inflateInit_, iFppi_t) \ GO(deflateInit_, iFpipi_t) \ GO(inflateInit2_, iFpipi_t) \ |