]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: fix signatures
authorfennecdjay <fennecdjay@gmail.com>
Mon, 27 Feb 2023 12:23:19 +0000 (13:23 +0100)
committerfennecdjay <fennecdjay@gmail.com>
Mon, 27 Feb 2023 12:23:19 +0000 (13:23 +0100)
scripts/embed.bash

index 1729cd31ad7cc1efb3392d20e9ceea13411e8180..c6c7a021098dab1784f394fb5b4ff6514f98f35b 100644 (file)
@@ -46,13 +46,13 @@ driver() {
 }
 modini() {
   has_func "gwmodini" "$1" "$2" && {
-    header "extern void *gwmodini_${2}(Gwion const, Vector const);"
+    header "extern void *gwmodini_${2}(const struct Gwion_ *, struct Vector_ *const);"
     echo "  plug->modini = gwmodini_${2};"
   }
 }
 modend() {
   has_func "gwmodend" "$1" "$2" && {
-    header "extern m_bool gwmodend_${2}(Gwion const, void *self);"
+    header "extern void* gwmodend_${2}(struct Gwion_ *const, void *);"
     echo "  plug->modend = gwmodend_${2};"
   }
 }