blob: 3c8fe55bdf3346c409a8009a2743ae7df4c88207 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "qemu/osdep.h"
#include "qmp-commands.h"
#include "qapi/error.h"
#include "qapi/qmp/qerror.h"
GuidInfo *qmp_query_vm_generation_id(Error **errp)
{
error_setg(errp, QERR_UNSUPPORTED);
return NULL;
}
|