about summary refs log tree commit diff stats
path: root/src/wrapped/wrappedlibxft.c
diff options
context:
space:
mode:
authorrajdakin <rajdakin@gmail.com>2024-02-10 15:06:08 +0100
committerGitHub <noreply@github.com>2024-02-10 15:06:08 +0100
commitb527ebbf5be0949df3b9dcf0806109acc8119476 (patch)
treed9687f665b8e3a1facc15be822463bf7d274dacd /src/wrapped/wrappedlibxft.c
parentad55cfde7f61395618991543694b35183f9c6ad7 (diff)
downloadbox64-b527ebbf5be0949df3b9dcf0806109acc8119476.tar.gz
box64-b527ebbf5be0949df3b9dcf0806109acc8119476.zip
Wrapped libraries refactor (#1257)
* [MISC] Removed a warning caused by tab/space mismatch

* [WRAPPED] Factored out `getMy` and `freeMy` calls

* [WRAPPED] Small cleanup of the init header

* [WRAPPED] Factored out `SETALT`

* [WRAPPED] Factored out needed libs
Diffstat (limited to 'src/wrapped/wrappedlibxft.c')
-rw-r--r--src/wrapped/wrappedlibxft.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/wrapped/wrappedlibxft.c b/src/wrapped/wrappedlibxft.c
index 175b9872..633e4066 100644
--- a/src/wrapped/wrappedlibxft.c
+++ b/src/wrapped/wrappedlibxft.c
@@ -20,20 +20,9 @@
 #define LIBNAME libxft
 
 #ifdef ANDROID
-    #define CUSTOM_INIT \
-        setNeededLibs(lib, 4,           \
-            "libX11.so",              \
-            "libfontconfig.so",       \
-            "libXrender.so",          \
-            "libfreetype.so");
+#define NEEDED_LIBS "libX11.so", "libfontconfig.so", "libXrender.so", "libfreetype.so"
 #else
-    #define CUSTOM_INIT \
-        setNeededLibs(lib, 4,           \
-            "libX11.so.6",              \
-            "libfontconfig.so.1",       \
-            "libXrender.so.1",          \
-            "libfreetype.so.6");
+#define NEEDED_LIBS "libX11.so.6", "libfontconfig.so.1", "libXrender.so.1", "libfreetype.so.6"
 #endif
 
 #include "wrappedlib_init.h"
-