MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / QueueCopyFile

Method QueueCopyFile

src/QueueOperation.cpp:318–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316//////////////////////////////////////
317
318QueueCopyFile::QueueCopyFile(HWND hNotify, const char* externalFile, const char* externalParent, Transfer_Mode tMode, int notifyCode, void* notifyData) :
319 QueueOperation(QueueTypeCopyFile, hNotify, notifyCode, notifyData),
320 m_tMode(tMode)
321
322{
323 m_externalFile = SU::strdup(externalFile);
324 m_target = SU::strdup(externalParent);
325 OutMsg("INIT PARENT: %T", SU::Utf8ToTChar(externalParent));
326}
327
328QueueCopyFile::~QueueCopyFile() {
329 SU::free(m_externalFile);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected