qga/qapi-schema: Move error documentation to new "Errors" sections
[qemu/kevin.git] / hw / hyperv / hv-balloon-stub.c
bloba47412d4a8ad1dc9de322dfca8253e068a5dffc1
1 /*
2 * QEMU Hyper-V Dynamic Memory Protocol driver
4 * Copyright (C) 2023 Oracle and/or its affiliates.
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 */
10 #include "qemu/osdep.h"
11 #include "qapi/error.h"
12 #include "qapi/qapi-commands-machine.h"
13 #include "qapi/qapi-types-machine.h"
15 HvBalloonInfo *qmp_query_hv_balloon_status_report(Error **errp)
17 error_setg(errp, "hv-balloon device not enabled in this build");
18 return NULL;