diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-09-24 11:13:37 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-09-25 15:19:06 +0200 |
| commit | af442a22d956464e7df703b290fa49d78dda3dfa (patch) | |
| tree | b50403630f29373cfb711a711fbfd24d632ce2ba /executor/syscalls_windows.h | |
| parent | 255e8b5e54e93fc77302a546dbb7a932412d1bde (diff) | |
executor, sys/windows: initial windows support
Diffstat (limited to 'executor/syscalls_windows.h')
| -rw-r--r-- | executor/syscalls_windows.h | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
