| 159 | } // namespace fusion |
| 160 | |
| 161 | int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpstrCmdLine, int nCmdShow) |
| 162 | try |
| 163 | { |
| 164 | return fusion::debugviewpp::Main(hInstance, hPrevInstance, lpstrCmdLine, nCmdShow); |
| 165 | } |
| 166 | catch (std::exception& ex) |
| 167 | { |
| 168 | fusion::errormessage(ex.what(), "Debugview++ Error"); |
| 169 | return EXIT_FAILURE; |
| 170 | } |
nothing calls this directly
no test coverage detected