| 895 | ****************************************/ |
| 896 | #if defined _UNICODE |
| 897 | int CUT_FTPClient::SendFile(LPCTSTR sourceFile,LPCWSTR destFile){ |
| 898 | return SendFile(sourceFile, AC(destFile));} |
| 899 | #endif |
| 900 | int CUT_FTPClient::SendFile(LPCTSTR sourceFile,LPCSTR destFile){ |
| 901 | CUT_FileDataSource ds(sourceFile); |
nothing calls this directly
no test coverage detected