|
IsDebug function
|
|
| acUtils
|
| function IsDebug: Boolean;
|
| The IsDebug function returns True if program executed under standard debugger, or False if it is not in debug mode.
|
| function IsDebug: Boolean;
|
| begin
|
| Result := DebugHook <> 0;
|
| end;
|