event_clear
Description of the 'event_clear' function in HyperDbg Scripts
Function
event_clear
Syntax
event_clear( EventId );
Parameters
[Expression (EventId)]
Event ID of the event that needs to be deactivated.
Description
Clears an event by its Event ID.
Examples
event_clear(1);
Clear an event with EventId = 1
.
When an event is executed, the $event_id
pseudo-register contains the target event's ID.
For example, you can force an event to be cleared immediately:
Remarks
Related
Last updated