diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-10 15:18:26 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-10 15:18:26 -0400 |
commit | 66506824a796f28e9d926077024d319fa67d3aaf (patch) | |
tree | cd6e3643fac8506da97b9c3a553d364fefe2605a /arm9/lib/include/SPI_pm.h | |
parent | d6dcf8bf6522ccd5cacac774d57657cd1da313c1 (diff) |
SDK declaration of PM_GetBackLight
Diffstat (limited to 'arm9/lib/include/SPI_pm.h')
-rw-r--r-- | arm9/lib/include/SPI_pm.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arm9/lib/include/SPI_pm.h b/arm9/lib/include/SPI_pm.h new file mode 100644 index 00000000..1cf37f02 --- /dev/null +++ b/arm9/lib/include/SPI_pm.h @@ -0,0 +1,16 @@ +#ifndef NITRO_SPI_PM_H_ +#define NITRO_SPI_PM_H_ + +ENUMS_ALWAYS_INT_ON + +typedef enum +{ + PM_BACKLIGHT_OFF = 0, + PM_BACKLIGHT_ON = 1 +} PMBackLightSwitch; + +void PM_GetBackLight(PMBackLightSwitch * top, PMBackLightSwitch * bottom); + +ENUMS_ALWAYS_INT_RESET + +#endif //NITRO_SPI_PM_H_ |