Initial commit

This commit is contained in:
2025-03-31 18:05:17 +02:00
commit 336ef95c3f
10 changed files with 197 additions and 0 deletions

18
mods/mod_a.c Normal file
View File

@@ -0,0 +1,18 @@
#include "haxcc.h"
#include <stdio.h>
int mod_a_init(void) {
printf("module a init\n");
return 0;
}
int mod_a_done(void) {
printf("module a done\n");
return 0;
}
HAX_MOD(mod_a) = {
.init = mod_a_init,
.done = mod_a_done
};