| 18 | #include <shellapi.h> |
| 19 | |
| 20 | static bool open_log() |
| 21 | { |
| 22 | if (logFName[0]) |
| 23 | { |
| 24 | ShellExecute(nullptr, "open", logFName, nullptr, nullptr, SW_SHOW); |
| 25 | return true; |
| 26 | } |
| 27 | return false; |
| 28 | } |
| 29 | |
| 30 | extern bool OnMainThread(); |
| 31 |
no outgoing calls
no test coverage detected