| 549 | } |
| 550 | |
| 551 | int FTPProfile::GetCacheExternal(const TCHAR* localfile, char* extbuffer, int extbuffersize) const { |
| 552 | if (!extbuffer || extbuffersize == 0) |
| 553 | return -1; |
| 554 | |
| 555 | return m_cache->GetExternalPathFromLocal(localfile, extbuffer, extbuffersize); |
| 556 | } |
| 557 | |
| 558 | int FTPProfile::GetCacheLocal(const char * externalfile, TCHAR* localbuffer, int localbuffersize) const { |
| 559 | if (!localbuffer || localbuffersize == 0) |
no test coverage detected