| 505 | } |
| 506 | |
| 507 | DWORD WINAPI NMergeFilesDialog::MergeFilesThread(LPVOID pParam) |
| 508 | { |
| 509 | assert(pParam != nullptr); |
| 510 | |
| 511 | auto *pMergeFiles = reinterpret_cast<MergeFiles *>(pParam); |
| 512 | pMergeFiles->StartMerging(); |
| 513 | |
| 514 | return 0; |
| 515 | } |
| 516 | |
| 517 | MergeFiles::MergeFiles(HWND hDlg, const std::wstring &strOutputFilename, |
| 518 | const std::list<std::wstring> &FullFilenameList) |
nothing calls this directly
no test coverage detected