mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01: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
|
|
};
|