Message handler for about box.
| 130 | |
| 131 | // Message handler for about box. |
| 132 | INT_PTR CALLBACK AppWindow::About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) |
| 133 | { |
| 134 | UNREFERENCED_PARAMETER(lParam); |
| 135 | switch (message) |
| 136 | { |
| 137 | case WM_INITDIALOG: |
| 138 | return (INT_PTR)TRUE; |
| 139 | case WM_COMMAND: |
| 140 | if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) |
| 141 | { |
| 142 | EndDialog(hDlg, LOWORD(wParam)); |
| 143 | return (INT_PTR)TRUE; |
| 144 | } |
| 145 | break; |
| 146 | } |
| 147 | return (INT_PTR)FALSE; |
| 148 | } |
| 149 | |
| 150 | void AppWindow::InitializeWebView() |
| 151 | { |
nothing calls this directly
no outgoing calls
no test coverage detected