| 1 | /* |
| 2 | * Windows crashdump stubs |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 5 | */ |
| 6 | |
| 7 | #include "qemu/osdep.h" |
| 8 | #include "qapi/error.h" |
| 9 | #include "win_dump.h" |
| 10 | |
| 11 | bool win_dump_available(Error **errp) |
| 12 | { |
| 13 | error_setg(errp, "x86-64 Windows guest dump not built-in"); |
| 14 | |
| 15 | return false; |
| 16 | } |
| 17 | |
| 18 | void create_win_dump(DumpState *s, Error **errp) |
| 19 | { |
| 20 | g_assert_not_reached(); |
| 21 | } |