summaryrefslogtreecommitdiff
path: root/ZAPD/ExecutableMain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ZAPD/ExecutableMain.cpp')
-rw-r--r--ZAPD/ExecutableMain.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/ZAPD/ExecutableMain.cpp b/ZAPD/ExecutableMain.cpp
index 303ea24..1bb0192 100644
--- a/ZAPD/ExecutableMain.cpp
+++ b/ZAPD/ExecutableMain.cpp
@@ -1,5 +1,8 @@
+#include <stdio.h>
+
extern "C" int zapd_main(int argc, char* argv[]);
+extern "C" int zapd_report(int argc, char* argv[], size_t* extractCount, size_t* totalExtract);
int main(int argc, char* argv[]) {
- return zapd_main(argc, argv);
+ return zapd_report(argc, argv, nullptr, nullptr);
}