uuid.c 246 字节
Newer Older
P
Peter Maydell 已提交
1
#include "qemu/osdep.h"
2
#include "qemu-common.h"
F
Fam Zheng 已提交
3
#include "qemu/uuid.h"
4 5 6 7 8 9 10 11 12 13
#include "qmp-commands.h"

UuidInfo *qmp_query_uuid(Error **errp)
{
    UuidInfo *info = g_malloc0(sizeof(*info));

    info->UUID = g_strdup(UUID_NONE);
    return info;
}