Declaration:
void AddWatch(char name[], int format=DF_HEX);
Description
Adds the specified name (the name parameter) to the Watches window in the specified format. If the Watches window is not already opened, it will be opened automatically.
Examples
AddWatch("Duration", DF_DEC);
AddWatch("Address"); // the default format is hexadecimal
|