master
c 19 lines 347 Bytes
Raw
1 /*
2 * QEMU VNC display driver
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 #include "qemu/osdep.h"
7
8 #include "ui/vnc.h"
9 #include "system/runstate.h"
10
11 void vnc_action_shutdown(VncState *vs)
12 {
13 qemu_system_powerdown_request();
14 }
15
16 void vnc_action_reset(VncState *vs)
17 {
18 qemu_system_reset_request(SHUTDOWN_CAUSE_HOST_QMP_SYSTEM_RESET);
19 }