diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-04-28 18:26:36 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-04-28 18:27:12 +0200 |
| commit | 57a9b520b0cc5f2b0d48c96b310356850a75e252 (patch) | |
| tree | 5c9e027d173fbfef6ce5e59c3d66cf9eb9b979bd /src/wrapped/wrappedlibharfbuzz.c | |
| parent | 69529708952abd1786dff2dfa6910a159ce8802c (diff) | |
| download | box64-57a9b520b0cc5f2b0d48c96b310356850a75e252.tar.gz box64-57a9b520b0cc5f2b0d48c96b310356850a75e252.zip | |
Added wrapped libharfbuzz
Diffstat (limited to 'src/wrapped/wrappedlibharfbuzz.c')
| -rw-r--r-- | src/wrapped/wrappedlibharfbuzz.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibharfbuzz.c b/src/wrapped/wrappedlibharfbuzz.c new file mode 100644 index 00000000..e98310a1 --- /dev/null +++ b/src/wrapped/wrappedlibharfbuzz.c @@ -0,0 +1,19 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#define _GNU_SOURCE /* See feature_test_macros(7) */ +#include <dlfcn.h> +#include "wrappedlibs.h" +#include "wrapper.h" +#include "bridge.h" +#include "librarian/library_private.h" +#include "x64emu.h" +#include <unistd.h> +#include <sys/mman.h> +#include <errno.h> +#include "debug.h" + +const char* libharfbuzzName = "libharfbuzz.so.0"; +#define LIBNAME libharfbuzz + +#include "wrappedlib_init.h" |