============================================================================= EditSortDlg()
| 6134 | // EditSortDlg() |
| 6135 | // |
| 6136 | BOOL EditSortDlg ( HWND hwnd, int *piSortFlags ) |
| 6137 | { |
| 6138 | INT_PTR iResult; |
| 6139 | iResult = ThemedDialogBoxParam ( |
| 6140 | g_hInstance, |
| 6141 | MAKEINTRESOURCEW ( IDD_SORT ), |
| 6142 | hwnd, |
| 6143 | EditSortDlgProc, |
| 6144 | ( LPARAM ) piSortFlags ); |
| 6145 | return ( iResult == IDOK ) ? TRUE : FALSE; |
| 6146 | } |
| 6147 | |
| 6148 | |
| 6149 | //============================================================================= |
no test coverage detected