| 1205 | } |
| 1206 | |
| 1207 | void EditBreakList() { |
| 1208 | if(WP_edit < 0) return; |
| 1209 | if(WP_edit >= numWPs) return; |
| 1210 | SendDlgItemMessage(hDebug,IDC_DEBUGGER_BP_LIST,LB_DELETESTRING,WP_edit,0); |
| 1211 | SendDlgItemMessage(hDebug,IDC_DEBUGGER_BP_LIST,LB_INSERTSTRING,WP_edit,(LPARAM)(LPSTR)BreakToText(WP_edit)); |
| 1212 | SendDlgItemMessage(hDebug,IDC_DEBUGGER_BP_LIST,LB_SETCURSEL,WP_edit,0); |
| 1213 | } |
| 1214 | |
| 1215 | void FillBreakList(HWND hwndDlg) |
| 1216 | { |
no test coverage detected