Peter Maydell | 87c9b5e | 2016-01-29 17:49:52 +0000 | [diff] [blame] | 1 | #include "qemu/osdep.h" |
Philippe Mathieu-Daudé | f68c014 | 2020-09-13 21:53:45 +0200 | [diff] [blame] | 2 | #include "qapi/qapi-commands-machine.h" |
Fam Zheng | cea2527 | 2016-09-21 12:27:14 +0800 | [diff] [blame] | 3 | #include "qemu/uuid.h" |
Paolo Bonzini | 5accc84 | 2013-08-02 17:02:01 +0200 | [diff] [blame] | 4 | |
5 | UuidInfo *qmp_query_uuid(Error **errp) | ||||
6 | { | ||||
7 | UuidInfo *info = g_malloc0(sizeof(*info)); | ||||
8 | |||||
9 | info->UUID = g_strdup(UUID_NONE); | ||||
10 | return info; | ||||
11 | } | ||||
12 |