Settings from IOS. More...
#include <stdbool.h>#include <stdint.h>Go to the source code of this file.
Functions | |
| void | ios_settings_initialize () |
| Pull all the settings through IOS. | |
| const char * | ios_settings_get (const char *key) |
| Get a feild from the settings file. | |
| uint32_t | ios_config_get (const char *key, void *buffer, uint32_t size) |
| Get a feild from the config file. | |
| bool | ios_config_is_progressive_scan () |
| Returns true if the default video mode is progressive scan. | |
| bool | ios_config_is_eurgb60 () |
| Get a feild from the config file. | |
Settings from IOS.
Uses the system settings from IOS to get useful system config.
|
extern |
Get a feild from the config file.
Get a feild from the config file. Returns the length of the value retrieved or zero if it could not be found.
You can see the keys and format here: https://wiibrew.org/wiki//shared2/sys/SYSCONF
| key | The key for the feild. |
| buffer | Buffer to put the data into |
| size | Size of the buffer |
|
extern |
Get a feild from the config file.
Returns true if the default video mode is eurgb60
|
extern |
Returns true if the default video mode is progressive scan.
Returns true if the default video mode is progressive scan.
|
extern |
Get a feild from the settings file.
Get a feild from the settings file. Returns NULL if the key is not found.
You can see the keys here: https://wiibrew.org/wiki//title/00000001/00000002/data/setting.txt
| key | The key for the feild. |
|
extern |
Pull all the settings through IOS.
Pull all the settings through IOS. Usually called by ios_initialize.