historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/include/qemu/id.h
2024-01-16 11:20:27 -06:00

14 lines
256 B
C

#ifndef QEMU_ID_H
#define QEMU_ID_H
typedef enum IdSubSystems {
ID_QDEV,
ID_BLOCK,
ID_CHR,
ID_MAX /* last element, used as array size */
} IdSubSystems;
char *id_generate(IdSubSystems id);
bool id_wellformed(const char *id);
#endif