===========================================================================
| 7452 | |
| 7453 | //=========================================================================== |
| 7454 | Update_t CmdWatchEnable (int nArgs) |
| 7455 | { |
| 7456 | if (! g_nWatches) |
| 7457 | return ConsoleDisplayError("There are no watches defined."); |
| 7458 | |
| 7459 | if (!nArgs) |
| 7460 | return Help_Arg_1( CMD_WATCH_ENABLE ); |
| 7461 | |
| 7462 | _BWZ_EnableDisableViaArgs( nArgs, g_aWatches, MAX_WATCHES, true ); |
| 7463 | |
| 7464 | return UPDATE_WATCH; |
| 7465 | } |
| 7466 | |
| 7467 | //=========================================================================== |
| 7468 | Update_t CmdWatchList (int nArgs) |
nothing calls this directly
no test coverage detected