2016-01-29 18:49:52 +01:00
|
|
|
#include "qemu/osdep.h"
|
2020-09-13 21:53:45 +02:00
|
|
|
#include "qapi/qapi-commands-machine.h"
|
2016-09-21 06:27:14 +02:00
|
|
|
#include "qemu/uuid.h"
|
2013-08-02 17:02:01 +02:00
|
|
|
|
|
|
|
UuidInfo *qmp_query_uuid(Error **errp)
|
|
|
|
{
|
|
|
|
UuidInfo *info = g_malloc0(sizeof(*info));
|
|
|
|
|
|
|
|
info->UUID = g_strdup(UUID_NONE);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|