diff options
| author | rajdakin <rajdakin@gmail.com> | 2021-04-11 17:53:23 +0200 |
|---|---|---|
| committer | rajdakin <rajdakin@gmail.com> | 2021-04-11 17:53:23 +0200 |
| commit | 72a505a3e885c2e180a6da51e0640953f956258d (patch) | |
| tree | 70e76f79cacd131b6c54d44aaa8ab2b4f02194fa /src/wrapped/generated/wrappedlibztypes.h | |
| parent | 550d252386d0a4d2bdb77de7264f6ab1bad98042 (diff) | |
| download | box64-72a505a3e885c2e180a6da51e0640953f956258d.tar.gz box64-72a505a3e885c2e180a6da51e0640953f956258d.zip | |
General improvements to box64 and fixed some SDL2 functions
Diffstat (limited to 'src/wrapped/generated/wrappedlibztypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibztypes.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/wrapped/generated/wrappedlibztypes.h b/src/wrapped/generated/wrappedlibztypes.h new file mode 100644 index 00000000..b2201a7d --- /dev/null +++ b/src/wrapped/generated/wrappedlibztypes.h @@ -0,0 +1,28 @@ +/******************************************************************* + * File automatically generated by rebuild_wrappers.py (v1.3.0.10) * + *******************************************************************/ +#ifndef __wrappedlibzTYPES_H_ +#define __wrappedlibzTYPES_H_ + +#ifndef LIBNAME +#error You should only #include this file inside a wrapped*.c file +#endif +#ifndef ADDED_FUNCTIONS +#define ADDED_FUNCTIONS() +#endif + +typedef int64_t (*iFp_t)(void*); +typedef int64_t (*iFppi_t)(void*, void*, int64_t); +typedef int64_t (*iFpipi_t)(void*, int64_t, void*, int64_t); +typedef int64_t (*iFpiiiiipi_t)(void*, int64_t, int64_t, int64_t, int64_t, int64_t, void*, int64_t); + +#define SUPER() ADDED_FUNCTIONS() \ + GO(deflateEnd, iFp_t) \ + GO(inflateEnd, iFp_t) \ + GO(inflateInit, iFp_t) \ + GO(inflateInit_, iFppi_t) \ + GO(deflateInit_, iFpipi_t) \ + GO(inflateInit2_, iFpipi_t) \ + GO(deflateInit2_, iFpiiiiipi_t) + +#endif // __wrappedlibzTYPES_H_ |