2016-01-29 20:49:52 +03:00
|
|
|
#include "qemu/osdep.h"
|
2018-02-27 02:13:27 +03:00
|
|
|
#include "qapi/qapi-commands-misc.h"
|
2016-09-21 07:27:14 +03:00
|
|
|
#include "qemu/uuid.h"
|
2013-08-02 19:02:01 +04:00
|
|
|
|
|
|
|
UuidInfo *qmp_query_uuid(Error **errp)
|
|
|
|
{
|
|
|
|
UuidInfo *info = g_malloc0(sizeof(*info));
|
|
|
|
|
|
|
|
info->UUID = g_strdup(UUID_NONE);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|