Pass args from the host when calling a HAL API and package the return
message
Change-Id: I2cae0d235431df8783013872d7c0cc91dcda6650
diff --git a/sysfuzzer/common/fuzz_tester/FuzzerBase.h b/sysfuzzer/common/fuzz_tester/FuzzerBase.h
index d92f4b2..77a33b1 100644
--- a/sysfuzzer/common/fuzz_tester/FuzzerBase.h
+++ b/sysfuzzer/common/fuzz_tester/FuzzerBase.h
@@ -34,7 +34,8 @@
// Loads a target component where the argument is the file path.
// Returns true iff successful.
- bool LoadTargetComponent(const char* target_dll_path);
+ bool LoadTargetComponent(const char* target_dll_path,
+ const char* module_name = NULL);
// Fuzz tests the loaded component using the provided interface specification.
// Returns true iff the testing is conducted completely.