repo.or.cz
/
qemu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s390x: introduce 2.11 compat machine
[qemu.git]
/
include
/
qemu
/
id.h
blob
40c70103e427ac2776a0d6b8c5a5d750a7aab423
1
#ifndef QEMU_ID_H
2
#define QEMU_ID_H
3
4
typedef
enum
IdSubSystems
{
5
ID_QDEV
,
6
ID_BLOCK
,
7
ID_MAX
/* last element, used as array size */
8
}
IdSubSystems
;
9
10
char
*
id_generate
(
IdSubSystems id
);
11
bool
id_wellformed
(
const char
*
id
);
12
13
#endif