| 775 | } |
| 776 | |
| 777 | static bool OptionsOnNotify(HWND hwndTab, HWND hWnd, LPARAM lParam) |
| 778 | { |
| 779 | switch (((LPNMHDR)lParam)->code) |
| 780 | { |
| 781 | case TCN_SELCHANGE: |
| 782 | OnSelChanged(hWnd); |
| 783 | break; |
| 784 | } |
| 785 | return TRUE; |
| 786 | } |
| 787 | |
| 788 | static INT_PTR CALLBACK DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
| 789 | { |
no test coverage detected