libnx v4.9.0
Loading...
Searching...
No Matches
album_la.h
Go to the documentation of this file.
1/**
2 * @file album_la.h
3 * @brief Wrapper for using the Album LibraryApplet.
4 * @author yellows8
5 * @copyright libnx Authors
6 */
7#pragma once
8#include "../types.h"
9
10/// Arg type values pushed for the applet input storage, stored as an u8.
11typedef enum {
12 AlbumLaArg_ShowAlbumFiles = 0, ///< ShowAlbumFiles. Only displays AlbumFiles associated with the application which launched the Album applet, with the filter button disabled.
13 AlbumLaArg_ShowAllAlbumFiles = 1, ///< ShowAllAlbumFiles. Displays all AlbumFiles, with filtering allowed.
14 AlbumLaArg_ShowAllAlbumFilesForHomeMenu = 2, ///< ShowAllAlbumFilesForHomeMenu. Similar to ::AlbumLaArg_ShowAllAlbumFiles.
16
17/**
18 * @brief Launches the applet with ::AlbumLaArg_ShowAlbumFiles and playStartupSound=false.
19 */
21
22/**
23 * @brief Launches the applet with ::AlbumLaArg_ShowAllAlbumFiles and playStartupSound=false.
24 */
26
27/**
28 * @brief Launches the applet with ::AlbumLaArg_ShowAllAlbumFilesForHomeMenu and playStartupSound=true.
29 */
31
Result albumLaShowAlbumFiles(void)
Launches the applet with AlbumLaArg_ShowAlbumFiles and playStartupSound=false.
Result albumLaShowAllAlbumFiles(void)
Launches the applet with AlbumLaArg_ShowAllAlbumFiles and playStartupSound=false.
Result albumLaShowAllAlbumFilesForHomeMenu(void)
Launches the applet with AlbumLaArg_ShowAllAlbumFilesForHomeMenu and playStartupSound=true.
AlbumLaArg
Arg type values pushed for the applet input storage, stored as an u8.
Definition album_la.h:11
@ AlbumLaArg_ShowAlbumFiles
ShowAlbumFiles. Only displays AlbumFiles associated with the application which launched the Album app...
Definition album_la.h:12
@ AlbumLaArg_ShowAllAlbumFilesForHomeMenu
ShowAllAlbumFilesForHomeMenu. Similar to AlbumLaArg_ShowAllAlbumFiles.
Definition album_la.h:14
@ AlbumLaArg_ShowAllAlbumFiles
ShowAllAlbumFiles. Displays all AlbumFiles, with filtering allowed.
Definition album_la.h:13
u32 Result
Function error code result type.
Definition types.h:44