I used to this function to be know is a function defined in my program compiled from xHarbour.
- Code: Select all Expand view
- FUNCTION Method_Run1(bRunBlock, cRunBlock, lResult)
LOCAL bTemp, Result := lResult
DEFAULT Result := .T.
IF !Empty(bRunBlock) .AND. HB_FUNCPTR(cRunBlock)<>NIL
Result := Eval(bRunBlock)
ENDIF
RETURN Result
How can I know it in Harbour?
Thanks