| 1 | /* |
| 2 | * QEMU Hyper-V Dynamic Memory Protocol driver |
| 3 | * |
| 4 | * Copyright (C) 2023 Oracle and/or its affiliates. |
| 5 | * |
| 6 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 7 | * See the COPYING file in the top-level directory. |
| 8 | */ |
| 9 | |
| 10 | #include "qemu/osdep.h" |
| 11 | #include "qapi/error.h" |
| 12 | #include "qapi/qapi-commands-machine.h" |
| 13 | #include "qapi/qapi-types-machine.h" |
| 14 | |
| 15 | HvBalloonInfo *qmp_query_hv_balloon_status_report(Error **errp) |
| 16 | { |
| 17 | error_setg(errp, "hv-balloon device not enabled in this build"); |
| 18 | return NULL; |
| 19 | } |