mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
11 lines
370 B
C
11 lines
370 B
C
#pragma once
|
|
#include "../types.h"
|
|
#include "sm.h"
|
|
|
|
Result accountInitialize(void);
|
|
void accountExit(void);
|
|
Service* accountGetService(void);
|
|
|
|
/// Get the userID for the currently active user. The output userID is only valid when the output account_selected==1, otherwise no user is currently selected.
|
|
Result accountGetActiveUser(u128 *userID, bool *account_selected);
|