|
|
|
@ -5,9 +5,9 @@
@@ -5,9 +5,9 @@
|
|
|
|
|
|
|
|
|
|
use crate::mii::MiiData; |
|
|
|
|
use bitflags::bitflags; |
|
|
|
|
use std::{ffi::CString, error::Error, fmt}; |
|
|
|
|
use std::{error::Error, ffi::CString, fmt}; |
|
|
|
|
|
|
|
|
|
/// Index of a Mii used to configure some parameters of the Mii Selector.
|
|
|
|
|
/// Index of a Mii on the Mii Selector interface.
|
|
|
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq)] |
|
|
|
|
pub enum Index { |
|
|
|
|
/// Specific Mii index.
|
|
|
|
@ -58,14 +58,14 @@ bitflags! {
@@ -58,14 +58,14 @@ bitflags! {
|
|
|
|
|
const ENABLE_CANCEL = ctru_sys::MIISELECTOR_CANCEL; |
|
|
|
|
/// Make guest Miis available to select.
|
|
|
|
|
const ENABLE_GUESTS = ctru_sys::MIISELECTOR_GUESTS; |
|
|
|
|
/// Show on the top screen.
|
|
|
|
|
/// Show the Mii Selector window on the top screen.
|
|
|
|
|
const USE_TOP_SCREEN = ctru_sys::MIISELECTOR_TOP; |
|
|
|
|
/// Start on the guests' page. Requires [Options::ENABLE_GUESTS].
|
|
|
|
|
/// Start the Mii Selector on the guests' page. Requires [Options::ENABLE_GUESTS].
|
|
|
|
|
const START_WITH_GUESTS = ctru_sys::MIISELECTOR_GUESTSTART; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Configuration object to setup the Mii Selector applet.
|
|
|
|
|
/// Configuration structure to setup the Mii Selector applet.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
/// ```no_run
|
|
|
|
|