1// Copyright 2017 The Fuchsia Authors
2//
3// Use of this source code is governed by a MIT-style
4// license that can be found in the LICENSE file or at
5// https://opensource.org/licenses/MIT
6
7#pragma once
8
9#include <zircon/compiler.h>
10
11__BEGIN_CDECLS
12
13enum reboot_flags {
14    REBOOT_NORMAL = 0,
15    REBOOT_BOOTLOADER = 1,
16    REBOOT_RECOVERY = 2,
17};
18
19void power_reboot(enum reboot_flags flags);
20void power_shutdown(void);
21
22__END_CDECLS
23