Hi Everyone
I need to implement in my PB 2019 R2 if there is a debugger reviewing my application. I read about IsDebuggerPresent from the windows API.
Can you please help on how I need to declare that function in PB2019.
I suppose i need to declare something like this:
FUNCTION boolean IsDebuggerPresent () LIBRARY "KERNEL32.DLL" alias for "IsDebuggerPresent;Ansi"
MDI Event: Active
Boolean lb_debuggerDetected = IsDebuggerPresent()
if lb_debuggerDetected then
//Debugger detected do something
End if