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