| 1213 | } |
| 1214 | |
| 1215 | void FillBreakList(HWND hwndDlg) |
| 1216 | { |
| 1217 | SendDlgItemMessage(hwndDlg,IDC_DEBUGGER_BP_LIST,LB_RESETCONTENT,0,0); |
| 1218 | for (int i = 0; i < numWPs; i++) |
| 1219 | SendDlgItemMessage(hwndDlg,IDC_DEBUGGER_BP_LIST,LB_INSERTSTRING,-1,(LPARAM)(LPSTR)BreakToText(i)); |
| 1220 | } |
| 1221 | |
| 1222 | void EnableBreak(int sel) |
| 1223 | { |
no test coverage detected