diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-10-06 15:16:57 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-10-06 15:16:57 +0200 |
| commit | 8965d9bd7041492ebeece6c8884d0fa37ed4cd8d (patch) | |
| tree | 8d6daa7c5c95102d44e8b036f156589bdf8c8c52 /src/wrapped32/wrappedlibuuid.c | |
| parent | 37fe9bad6d73571735ffa329a91adf113b93acc4 (diff) | |
| download | box64-8965d9bd7041492ebeece6c8884d0fa37ed4cd8d.tar.gz box64-8965d9bd7041492ebeece6c8884d0fa37ed4cd8d.zip | |
[BOX32][WRAPPER] Added 32bits libuuid (with new wrapperhelper)
Diffstat (limited to 'src/wrapped32/wrappedlibuuid.c')
| -rw-r--r-- | src/wrapped32/wrappedlibuuid.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wrapped32/wrappedlibuuid.c b/src/wrapped32/wrappedlibuuid.c new file mode 100644 index 00000000..23d02fca --- /dev/null +++ b/src/wrapped32/wrappedlibuuid.c @@ -0,0 +1,18 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#define _GNU_SOURCE /* See feature_test_macros(7) */ +#include <dlfcn.h> + +#include "wrappedlibs.h" + +#include "wrapper32.h" +#include "bridge.h" +#include "librarian/library_private.h" +#include "x64emu.h" +#include "box32.h" + +static const char* libuuidName = "libuuid.so.1"; +#define LIBNAME libuuid + +#include "wrappedlib_init32.h" |