| 287 | return 0; // of course, if we can't scroll up, just return 0! |
| 288 | } |
| 289 | int InstructionDown(int from) |
| 290 | { |
| 291 | int tmp = opsize[GetMem(si.nPos)]; |
| 292 | if ((tmp)) |
| 293 | return from + tmp; |
| 294 | else |
| 295 | return from + 1; // this is data or undefined instruction |
| 296 | } |
| 297 | |
| 298 | static void UpdateDialog(HWND hwndDlg) { |
| 299 | BOOL forbid = IsDlgButtonChecked(hwndDlg, IDC_ADDBP_MODE_F); |
no test coverage detected