Initial commit
This commit is contained in:
18
mods/mod_a.c
Normal file
18
mods/mod_a.c
Normal 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
|
||||
};
|
||||
Reference in New Issue
Block a user