| 1220 | } |
| 1221 | |
| 1222 | void EnableBreak(int sel) |
| 1223 | { |
| 1224 | if(sel<0) return; |
| 1225 | if(sel>=numWPs) return; |
| 1226 | watchpoint[sel].flags^=WP_E; |
| 1227 | SendDlgItemMessage(hDebug,IDC_DEBUGGER_BP_LIST,LB_DELETESTRING,sel,0); |
| 1228 | SendDlgItemMessage(hDebug,IDC_DEBUGGER_BP_LIST,LB_INSERTSTRING,sel,(LPARAM)(LPSTR)BreakToText(sel)); |
| 1229 | SendDlgItemMessage(hDebug,IDC_DEBUGGER_BP_LIST,LB_SETCURSEL,sel,0); |
| 1230 | UpdateBreakpointsCaption(); |
| 1231 | } |
| 1232 | |
| 1233 | void DeleteBreak(int sel) |
| 1234 | { |
no test coverage detected