| 266 | { |
| 267 | CopyOperation m_op; |
| 268 | HRESULT recordFilesImpl(IShellItemArray* selection) |
| 269 | { |
| 270 | Recorder recorder{ m_op }; |
| 271 | for (auto item : ShellItemArray{ selection }) |
| 272 | { |
| 273 | if (item.GetPtr()) |
| 274 | recorder << item; |
| 275 | } |
| 276 | return S_OK; |
| 277 | } |
| 278 | |
| 279 | HRESULT callMainProgramImpl(std::wstring_view arg) |
| 280 | { |