diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-25 11:53:49 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-25 11:53:49 +0100 |
| commit | 8fa2368a635c6040ccbd5ba2fc70acb48423d17b (patch) | |
| tree | 917cf71a453e8e5e9d0213fbf09d1a30736eed71 /src/wrapped/wrappedlibogg.c | |
| parent | 72ca99051b9ea5786e22214d2cbb0befd70be670 (diff) | |
| download | box64-8fa2368a635c6040ccbd5ba2fc70acb48423d17b.tar.gz box64-8fa2368a635c6040ccbd5ba2fc70acb48423d17b.zip | |
Added wrapped libogg
Diffstat (limited to 'src/wrapped/wrappedlibogg.c')
| -rwxr-xr-x | src/wrapped/wrappedlibogg.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibogg.c b/src/wrapped/wrappedlibogg.c new file mode 100755 index 00000000..f922d8af --- /dev/null +++ b/src/wrapped/wrappedlibogg.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* liboggName = "libogg.so.0"; +#define LIBNAME libogg + +#include "wrappedlib_init.h" + |