]>
Commit | Line | Data |
---|---|---|
083a5f87 EH |
1 | #include "qemu-common.h" |
2 | #include "migration/vmstate.h" | |
3 | ||
c71c3e99 AF |
4 | const VMStateDescription vmstate_dummy = {}; |
5 | ||
083a5f87 EH |
6 | int vmstate_register_with_alias_id(DeviceState *dev, |
7 | int instance_id, | |
8 | const VMStateDescription *vmsd, | |
9 | void *base, int alias_id, | |
10 | int required_for_version) | |
11 | { | |
12 | return 0; | |
13 | } | |
14 | ||
15 | void vmstate_unregister(DeviceState *dev, | |
16 | const VMStateDescription *vmsd, | |
17 | void *opaque) | |
18 | { | |
19 | } |