| 18 | std::atomic<bool> g_cancelToken{false}; |
| 19 | |
| 20 | BOOL WINAPI ControlHandler(DWORD dwCtrlType) |
| 21 | { |
| 22 | g_cancelToken = true; |
| 23 | return TRUE; |
| 24 | } |
| 25 | |
| 26 | void FindOptions(int argc, wchar_t** argv, std::vector<std::wstring>& input, std::wstring& output, bool& deduplicate) |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected