| 243 | struct UNDOSTRUCT *undo_list=0; |
| 244 | |
| 245 | void resetHighlightingActivityLog() |
| 246 | { |
| 247 | // clear the HighlightActivity data |
| 248 | for (int i = 0; i < DataAmount; ++i) |
| 249 | { |
| 250 | PreviousValues[i] = PREVIOUS_VALUE_UNDEFINED; |
| 251 | HighlightedBytes[i] = HIGHLIGHT_ACTIVITY_MIN_VALUE; |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | void ApplyPatch(int addr,int size, uint8* data){ |
| 256 | UNDOSTRUCT *tmp = (UNDOSTRUCT*)malloc(sizeof(UNDOSTRUCT)); //mbg merge 7/18/06 removed struct qualifiers and added cast |
no outgoing calls
no test coverage detected