10 lines
192 B
C
10 lines
192 B
C
|
#include "qemu/osdep.h"
|
||
|
#include "qmp-commands.h"
|
||
|
#include "qapi/qmp/qerror.h"
|
||
|
|
||
|
GuidInfo *qmp_query_vm_generation_id(Error **errp)
|
||
|
{
|
||
|
error_setg(errp, QERR_UNSUPPORTED);
|
||
|
return NULL;
|
||
|
}
|