Go to the source code of this file.
◆ SDL_GetPowerInfo_Impl
◆ SDL_GetPowerInfo()
Get the current power supply details.
- Parameters
-
secs | Seconds of battery life left. You can pass a NULL here if you don't care. Will return -1 if we can't determine a value, or we're not running on a battery. |
pct | Percentage of battery life left, between 0 and 100. You can pass a NULL here if you don't care. Will return -1 if we can't determine a value, or we're not running on a battery. |
- Returns
- The state of the battery (if any).
Definition at line 85 of file SDL_power.c.
87 #ifndef SDL_POWER_DISABLED
93 int _seconds, _percent;
95 if (seconds ==
NULL) {
98 if (percent ==
NULL) {
102 #ifndef SDL_POWER_DISABLED
103 for (
i = 0;
i < total;
i++) {
References i, implementations, NULL, retval, and SDL_POWERSTATE_UNKNOWN.
◆ implementations