diff options
| author | kaixindeken <zra981217@tju.edu.cn> | 2024-07-15 14:23:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-15 08:23:14 +0200 |
| commit | 94ccde160a74623dfffac6367fb8bddb7e97d6aa (patch) | |
| tree | c3e75855da415d78fc810c119ea2e462bcbf71b4 /src/wrapped/wrappedlibtiff5.c | |
| parent | d8746c6c70007417ececbcfafa5a47fd6e47ba4f (diff) | |
| download | box64-94ccde160a74623dfffac6367fb8bddb7e97d6aa.tar.gz box64-94ccde160a74623dfffac6367fb8bddb7e97d6aa.zip | |
Wrapped libtiff5 and libltdl7 (#1677)
* Wrapped libtiff5 * no types generated * libtiff5 added missing defs types undefs files * wrapped libltdl7 * rerun actions * add more wrapped function for tiff5 and ltdl7 * remove unused functions
Diffstat (limited to 'src/wrapped/wrappedlibtiff5.c')
| -rw-r--r-- | src/wrapped/wrappedlibtiff5.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibtiff5.c b/src/wrapped/wrappedlibtiff5.c new file mode 100644 index 00000000..7c1185a3 --- /dev/null +++ b/src/wrapped/wrappedlibtiff5.c @@ -0,0 +1,21 @@ +#define _GNU_SOURCE /* See feature_test_macros(7) */ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <dlfcn.h> + +#include "wrappedlibs.h" + +#include "wrapper.h" +#include "bridge.h" +#include "librarian/library_private.h" +#include "x64emu.h" + +const char* libtiff5Name = "libtiff.so.5"; +#define LIBNAME libtiff5 + +#include "generated/wrappedlibtiff5types.h" + +// Insert code here + +#include "wrappedlib_init.h" \ No newline at end of file |