===========================================================================
| 1972 | |
| 1973 | //=========================================================================== |
| 1974 | Update_t CmdBreakpointDisable (int nArgs) |
| 1975 | { |
| 1976 | if (! g_nBreakpoints) |
| 1977 | return _BP_InfoNone(); |
| 1978 | |
| 1979 | if (! nArgs) |
| 1980 | return Help_Arg_1( CMD_BREAKPOINT_DISABLE ); |
| 1981 | |
| 1982 | _BWZ_EnableDisableViaArgs( nArgs, g_aBreakpoints, MAX_BREAKPOINTS, false ); |
| 1983 | |
| 1984 | return UPDATE_BREAKPOINTS; |
| 1985 | } |
| 1986 | |
| 1987 | //=========================================================================== |
| 1988 | Update_t CmdBreakpointEdit (int nArgs) |
nothing calls this directly
no test coverage detected