mirror of
https://github.com/LNH-team/dspico-usb-examples.git
synced 2026-06-03 01:37:04 +02:00
11 lines
205 B
C
11 lines
205 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
|
|
};
|