mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
4711d0565d
We still only lie about firmware version to qlaunch/maintenance. This is to prepare for loading settings off of the SD card.
23 lines
No EOL
409 B
C
23 lines
No EOL
409 B
C
/**
|
|
* @file setsys_shim.h
|
|
* @brief System Settings Services (set:sys) IPC wrapper. To be merged into libnx, eventually.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include <switch.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
char edid[0x100];
|
|
} SetSysEdid;
|
|
|
|
/* Command forwarders. */
|
|
Result setsysGetEdidFwd(Service* s, SetSysEdid* out);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |