| 269 | ////////////////////////////////////// |
| 270 | |
| 271 | QueueDownloadHandle::QueueDownloadHandle(HWND hNotify, const char * externalFile, HANDLE hFile, Transfer_Mode tMode, int notifyCode, void * notifyData) : |
| 272 | QueueOperation(QueueTypeDownloadHandle, hNotify, notifyCode, notifyData), |
| 273 | m_hFile(hFile), |
| 274 | m_tMode(tMode) |
| 275 | |
| 276 | { |
| 277 | m_externalFile = SU::strdup(externalFile); |
| 278 | } |
| 279 | |
| 280 | QueueDownloadHandle::~QueueDownloadHandle() { |
| 281 | SU::free(m_externalFile); |
nothing calls this directly
no outgoing calls
no test coverage detected