| 401 | } |
| 402 | |
| 403 | bool nputils::IsAllGreen() |
| 404 | { |
| 405 | SceNpServiceState state; |
| 406 | |
| 407 | if (sceNpGetServiceState(&state) == SCE_OK) |
| 408 | { |
| 409 | if (state == SCE_NP_SERVICE_STATE_ONLINE) |
| 410 | { |
| 411 | return true; |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | return false; |
| 416 | } |
| 417 | |
| 418 | nputils::TUS *nputils::GetTUS() |
| 419 | { |
nothing calls this directly
no outgoing calls
no test coverage detected