mirror of
https://github.com/xemu-project/xemu.git
synced 2024-12-18 09:19:53 +00:00
14 lines
310 B
C
14 lines
310 B
C
|
#include "qemu/osdep.h"
|
||
|
#include "sysemu/sysemu.h"
|
||
|
|
||
|
VMChangeStateEntry *qemu_add_vm_change_state_handler(VMChangeStateHandler *cb,
|
||
|
void *opaque)
|
||
|
{
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
void qemu_del_vm_change_state_handler(VMChangeStateEntry *e)
|
||
|
{
|
||
|
/* Nothing to do. */
|
||
|
}
|