How I Make DECLARE_FUNCTION(execMyFunction) Return Parameter ?

Hi, Is possible I return parameter in DECLARE_FUNCTION(execMyFunction) ???

If your function returns a bool for example, use something like this:

*(bool*)RESULT_PARAM = Success;
1 Like