2024-04-10 00:18:50 +10:00
|
|
|
//
|
|
|
|
|
// Created by ash on 9/04/24.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef INKAY_SYSCONFIG_H
|
|
|
|
|
#define INKAY_SYSCONFIG_H
|
|
|
|
|
|
|
|
|
|
#include <nn/swkbd.h>
|
2024-11-17 23:34:46 +11:00
|
|
|
#include <coreinit/mcp.h>
|
2024-04-10 00:18:50 +10:00
|
|
|
|
|
|
|
|
nn::swkbd::LanguageType get_system_language();
|
2024-11-17 23:34:46 +11:00
|
|
|
const char * get_console_serial();
|
|
|
|
|
MCPSystemVersion get_console_os_version();
|
2024-11-21 13:19:06 +11:00
|
|
|
unsigned short get_console_peertopeer_port();
|
2024-04-10 00:18:50 +10:00
|
|
|
|
|
|
|
|
#endif //INKAY_SYSCONFIG_H
|