diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-07-09 18:38:12 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-07-09 18:38:12 +0200 |
| commit | 2f74e6ebf84794c54e6204d59d5edbf5026afbd8 (patch) | |
| tree | b182594490edafd621e52ffc647ff328845a14d4 /src/wrapped/wrappedgcrypt.c | |
| parent | c1aeb2244cf57886d9a9fdd992c4690975f31539 (diff) | |
| download | box64-2f74e6ebf84794c54e6204d59d5edbf5026afbd8.tar.gz box64-2f74e6ebf84794c54e6204d59d5edbf5026afbd8.zip | |
Added (empty) wrapped libgcrypt.so.20
Diffstat (limited to 'src/wrapped/wrappedgcrypt.c')
| -rw-r--r-- | src/wrapped/wrappedgcrypt.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wrapped/wrappedgcrypt.c b/src/wrapped/wrappedgcrypt.c new file mode 100644 index 00000000..b8bd8fcc --- /dev/null +++ b/src/wrapped/wrappedgcrypt.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 "wrapper.h" +#include "bridge.h" +#include "librarian/library_private.h" +#include "x64emu.h" + +const char* gcryptName = "libgcrypt.so.20"; +#define LIBNAME gcrypt + +#include "wrappedlib_init.h" + |