| 501 | } |
| 502 | |
| 503 | bool utils::IsLocalPath(const char *path) |
| 504 | { |
| 505 | if (!sce_paf_strncmp(path, "http", 4) || !sce_paf_strncmp(path, "ftp", 3) || !sce_paf_strncmp(path, "smb", 3)) |
| 506 | { |
| 507 | return false; |
| 508 | } |
| 509 | |
| 510 | return true; |
| 511 | } |
| 512 | |
| 513 | menu::GenericMenu *utils::CreatePlayer(string const& url) |
| 514 | { |
nothing calls this directly
no outgoing calls
no test coverage detected