about summary refs log tree commit diff
path: root/include/common.h
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2019-09-18 10:22:55 +0200
committerGitHub <noreply@github.com>2019-09-18 10:22:55 +0200
commitb55ea6409dfcadf3c43244fb8e72ea660fd4fcc2 (patch)
tree8c2a81fde3312449b18cff1ab6ce27432db6e3e2 /include/common.h
parent68b3849d51e94e394334305b8ab7e4f613a8bbb9 (diff)
parent5e56d3bf368df07d964de769aa5142ad98536330 (diff)
downloadafl++-b55ea6409dfcadf3c43244fb8e72ea660fd4fcc2.tar.gz
Merge pull request #60 from vanhauser-thc/wine_mode
Wine mode
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index 905830b5..c370044e 100644
--- a/include/common.h
+++ b/include/common.h
@@ -27,6 +27,11 @@
 #define __AFLCOMMON_H
 #include "types.h"
 
+extern u8  *target_path;                 /* Path to target binary            */
+
 void detect_file_args(char **argv, u8 *prog_in);
+
+char** get_qemu_argv(u8* own_loc, char** argv, int argc);
+char** get_wine_argv(u8* own_loc, char** argv, int argc);
 #endif