blob: 7d90335afb7f4acd649f1b79716723bad0358cbb [file] [log] [blame]
#ifndef QEMU_ID_H
#define QEMU_ID_H 1
typedef enum IdSubSystems {
ID_QDEV,
ID_BLOCK,
ID_MAX /* last element, used as array size */
} IdSubSystems;
char *id_generate(IdSubSystems id);
bool id_wellformed(const char *id);
#endif