| 84 | } |
| 85 | |
| 86 | bool aptDspSleep(void) |
| 87 | { |
| 88 | if (!dspComponentLoaded || dspSleeping) |
| 89 | return false; |
| 90 | |
| 91 | dspCallHook(DSPHOOK_ONSLEEP); |
| 92 | DSP_UnloadComponent(); |
| 93 | dspSleeping = true; |
| 94 | return true; |
| 95 | } |
| 96 | |
| 97 | void aptDspWakeup(void) |
| 98 | { |
nothing calls this directly
no test coverage detected