| 1043 | } |
| 1044 | |
| 1045 | LRESULT CMainFrame::OnRunAsSystem(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { |
| 1046 | if (SecurityHelper::EnablePrivilege(SE_DEBUG_NAME, true)) { |
| 1047 | if (!SecurityHelper::IsSysRun()) { |
| 1048 | if (SecurityHelper::SysRun(L"runas")) |
| 1049 | SendMessage(WM_CLOSE); |
| 1050 | } |
| 1051 | } |
| 1052 | return 0; |
| 1053 | } |
| 1054 | |
| 1055 | LRESULT CMainFrame::OnFileExit(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { |
| 1056 | PostMessage(WM_CLOSE); |
nothing calls this directly
no test coverage detected