===========================================================================
| 2256 | |
| 2257 | //=========================================================================== |
| 2258 | void _BWZ_RemoveOne ( Breakpoint_t *aBreakWatchZero, const int iSlot, int & nTotal ) |
| 2259 | { |
| 2260 | if (aBreakWatchZero[iSlot].bSet) |
| 2261 | { |
| 2262 | aBreakWatchZero[ iSlot ].bSet = false; |
| 2263 | aBreakWatchZero[ iSlot ].bEnabled = false; |
| 2264 | aBreakWatchZero[ iSlot ].nLength = 0; |
| 2265 | nTotal--; |
| 2266 | } |
| 2267 | } |
| 2268 | |
| 2269 | //=========================================================================== |
| 2270 | void _BWZ_RemoveAll ( Breakpoint_t *aBreakWatchZero, const int nMax, int & nTotal ) |
no outgoing calls
no test coverage detected