| 51 | } |
| 52 | |
| 53 | void LocalServerBrowser::GetInfoForPlayer(string const& in, string& url, GenericPlayer::Option **opt) |
| 54 | { |
| 55 | string fullPath = m_path + in; |
| 56 | |
| 57 | if (!utils::IsLocalPath(in.c_str())) |
| 58 | { |
| 59 | url = in; |
| 60 | } |
| 61 | else |
| 62 | { |
| 63 | url = fullPath; |
| 64 | } |
| 65 | *opt = NULL; |
| 66 | } |
| 67 | |
| 68 | void LocalServerBrowser::SetPath(const char *ref) |
| 69 | { |
nothing calls this directly
no outgoing calls
no test coverage detected