From af442a22d956464e7df703b290fa49d78dda3dfa Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 24 Sep 2017 11:13:37 +0200 Subject: executor, sys/windows: initial windows support --- executor/syscalls_windows.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 executor/syscalls_windows.h (limited to 'executor/syscalls_windows.h') diff --git a/executor/syscalls_windows.h b/executor/syscalls_windows.h new file mode 100644 index 000000000..517845c25 --- /dev/null +++ b/executor/syscalls_windows.h @@ -0,0 +1,14 @@ +// AUTOGENERATED FILE + +#if defined(_M_X64) || 0 +#define GOARCH "amd64" +#define SYZ_REVISION "5abfe477fc941d0acacdeae7934602a90c22d5bc" + +unsigned syscall_count = 3; +call_t syscalls[] = { + {"CloseHandle", 0, (syscall_t)CloseHandle}, + {"CreateFileA", 0, (syscall_t)CreateFileA}, + {"VirtualAlloc", 0, (syscall_t)VirtualAlloc}, + +}; +#endif -- cgit mrf-deployment