about summary refs log tree commit diff stats
path: root/wrapperhelper/src/parse.h
diff options
context:
space:
mode:
authorrajdakin <rajdakin@gmail.com>2024-09-07 15:20:17 +0200
committerGitHub <noreply@github.com>2024-09-07 15:20:17 +0200
commitf0d7582845e124ed61b86f43da30a7b3f3f0c3f5 (patch)
tree2ee0c53821805b33ca47e0919fea95ccb920cd52 /wrapperhelper/src/parse.h
parent75bdb328284b8e5b6827eeb7d5cedef26222e7db (diff)
downloadbox64-f0d7582845e124ed61b86f43da30a7b3f3f0c3f5.tar.gz
box64-f0d7582845e124ed61b86f43da30a7b3f3f0c3f5.zip
Upgraded the wrapper helper (#1803)
* [WRAPPERHELPER] Fixed unsigned comparison in macros, added macro expanding in include commands, added -I option

* [WRAPPERHELPER] Forgot the README
Diffstat (limited to 'wrapperhelper/src/parse.h')
-rw-r--r--wrapperhelper/src/parse.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/wrapperhelper/src/parse.h b/wrapperhelper/src/parse.h
index 8c7d54b3..e80f32d2 100644
--- a/wrapperhelper/src/parse.h
+++ b/wrapperhelper/src/parse.h
@@ -6,9 +6,10 @@
 #include <stdio.h>
 
 #include "lang.h"
+#include "machine.h"
 
 void dump_prepare(const char *filename, FILE *file);
-void dump_preproc(const char *filename, FILE *file);
-file_t *parse_file(const char *filename, FILE *file);
+void dump_preproc(machine_t *target, const char *filename, FILE *file);
+file_t *parse_file(machine_t *target, const char *filename, FILE *file);
 
 #endif // PARSE_H