repo.or.cz
/
qemu
/
rayw.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hw/block/nvme: pull write pointer advancement to separate function
[qemu/rayw.git]
/
include
/
qemu
/
id.h
blob
b55c406e69dbc2a0b1029f4cea41e4b1f2ecd49d
1
#ifndef QEMU_ID_H
2
#define QEMU_ID_H
3
4
typedef
enum
IdSubSystems
{
5
ID_QDEV
,
6
ID_BLOCK
,
7
ID_CHR
,
8
ID_MAX
/* last element, used as array size */
9
}
IdSubSystems
;
10
11
char
*
id_generate
(
IdSubSystems id
);
12
bool
id_wellformed
(
const char
*
id
);
13
14
#endif