diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-25 13:26:02 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-25 13:26:02 +0100 |
| commit | 348bd64449843f70e08dd591c867973d83ea87eb (patch) | |
| tree | 831a18b17437f0d3d29f4097a5b3487aea3b8b01 /src/wrapped/wrappedlibxdamage.c | |
| parent | b36eca9792b55ccf038407470e480edc80daf543 (diff) | |
| download | box64-348bd64449843f70e08dd591c867973d83ea87eb.tar.gz box64-348bd64449843f70e08dd591c867973d83ea87eb.zip | |
Added a bunch of X11 related wrapped libs
Diffstat (limited to 'src/wrapped/wrappedlibxdamage.c')
| -rwxr-xr-x | src/wrapped/wrappedlibxdamage.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibxdamage.c b/src/wrapped/wrappedlibxdamage.c new file mode 100755 index 00000000..6f10e7f0 --- /dev/null +++ b/src/wrapped/wrappedlibxdamage.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 "debug.h" + +const char* libxdamageName = "libXdamage.so.1"; +#define LIBNAME libxdamage + +#include "wrappedlib_init.h" + |