|
1
|
#include "qemu/osdep.h" |
|
2
|
#include "system/runstate.h" |
|
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
|
} |