diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-04-12 18:34:03 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-04-12 18:34:03 +0200 |
| commit | a89748e9e5e2ea979ea9fb0c181040dc4096dadb (patch) | |
| tree | c06e4df1220f7452ff11523c72a3ef0be30d3e4e /src/wrapped32/wrappedblkid.c | |
| parent | 91f9a58b3058732259e8a86d830493ad87fa9ff5 (diff) | |
| download | box64-a89748e9e5e2ea979ea9fb0c181040dc4096dadb.tar.gz box64-a89748e9e5e2ea979ea9fb0c181040dc4096dadb.zip | |
[BOX32][WRAPPER] Added wrapped libmount and libblkid, plus 1 new wrapped function on libgbm
Diffstat (limited to 'src/wrapped32/wrappedblkid.c')
| -rw-r--r-- | src/wrapped32/wrappedblkid.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/wrapped32/wrappedblkid.c b/src/wrapped32/wrappedblkid.c new file mode 100644 index 00000000..29b9f0af --- /dev/null +++ b/src/wrapped32/wrappedblkid.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 "wrapper32.h" +#include "bridge.h" +#include "librarian/library_private.h" +#include "x64emu.h" +#include "box32context.h" + +static const char* blkidName = "libblkid.so.1"; +#define LIBNAME blkid + +#include "wrappedlib_init32.h" + |