Eduardo Habkost | 083a5f8 | 2012-12-05 14:49:08 -0200 | [diff] [blame] | 1 | #include "qemu-common.h" |
| 2 | #include "migration/vmstate.h" |
| 3 | |
Andreas Färber | c71c3e9 | 2013-02-18 17:56:20 +0100 | [diff] [blame] | 4 | const VMStateDescription vmstate_dummy = {}; |
| 5 | |
Eduardo Habkost | 083a5f8 | 2012-12-05 14:49:08 -0200 | [diff] [blame] | 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 | } |