You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
13 lines
279 B
C
13 lines
279 B
C
#pragma once
|
|
|
|
/// @brief Enum representing the exit mode of launcher.
|
|
enum class ExitMode
|
|
{
|
|
/// @brief Reset the system (DSi mode only).
|
|
Reset,
|
|
/// @brief Power off the system.
|
|
PowerOff,
|
|
/// @brief Launch an application through pico loader.
|
|
PicoLoader
|
|
};
|