| 400 | ////////////////////////////////////// |
| 401 | |
| 402 | QueueUpload::QueueUpload(HWND hNotify, const char * externalFile, const TCHAR * localFile, Transfer_Mode tMode, int notifyCode, void * notifyData) : |
| 403 | QueueOperation(QueueTypeUpload, hNotify, notifyCode, notifyData), |
| 404 | m_tMode(tMode) |
| 405 | { |
| 406 | m_localFile = SU::DupString(localFile); |
| 407 | m_externalFile = SU::strdup(externalFile); |
| 408 | } |
| 409 | |
| 410 | QueueUpload::~QueueUpload() { |
| 411 | SU::FreeTChar(m_localFile); |
nothing calls this directly
no outgoing calls
no test coverage detected