Fam Zheng | 80adf54 | 2017-08-15 21:07:37 +0800 | [diff] [blame] | 1 | #include "qemu/osdep.h" |
Markus Armbruster | 54d3123 | 2019-08-12 07:23:59 +0200 | [diff] [blame] | 2 | #include "sysemu/runstate.h" |
Fam Zheng | 80adf54 | 2017-08-15 21:07:37 +0800 | [diff] [blame] | 3 | |
4 | VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb, | ||||
5 | void *opaque) | ||||
6 | { | ||||
7 | return NULL; | ||||
8 | } | ||||
9 | |||||
10 | void qemu_del_vm_change_state_handler(VMChangeStateEntry *e) | ||||
11 | { | ||||
12 | /* Nothing to do. */ | ||||
13 | } |