
I try to understand the functions of the Runtime library, and not really undertand the GetRuntimeString() for a procedure
GetRuntimeInteger() return the pointer of the procedure called, but is there an utility for GetRuntimeString() and a procedure ?
Code: Select all
Runtime Procedure.s RuntimeProcedure()
ProcedureReturn "Runtime procedure"
EndProcedure
Debug RuntimeProcedure()
Debug "RuntimeProcedure() address: " + GetRuntimeInteger("RuntimeProcedure()")
Debug "RuntimeProcedure() address: " + @RuntimeProcedure()
Debug "GetRuntimeString() : " + GetRuntimeString("RuntimeProcedure()")