Skip to content

Latest commit

 

History

History
43 lines (23 loc) · 1.02 KB

event_enable.md

File metadata and controls

43 lines (23 loc) · 1.02 KB
description
Description of the 'event_enable' function in HyperDbg Scripts

event_enable

Function

event_enable

Syntax

event_enable( EventId );

Parameters

[ Expression (EventId)]

Event ID of the event that needs to be activated.

Description

Enables an event by its Event ID.

Examples

event_enable(1);

Enable an event with EventId = 1.

When an event is executed, the $event_id pseudo-register contains the target event's ID.

Remarks

You can see events' ID using the event command. The first column of this command's results shows the event ID.

Starting from v0.2, this function is changed from enable_event to event_enable.

Related

event_disable

event_clear