Hi,
I am improving my protection system and I will like to offuscate the call to IsDebuggerPresent() function:
#include "FiveWin.ch"
//------------------//
FUNCTION Main()
Alert( cValToChar(IsDebuggerPresent())+space(2)+"IsDebug running" ) // Returns either .T. or .F.
Return nil
//-------------------------
DLL32 STATIC FUNCTION IsDebuggerPresent() AS BOOL PASCAL LIB "Kernel32.dll"
Thank you very much!!.