Function _ret() Foundation
Sets the return value of the function to NIL.
BOOL _ret(XppParamList pList);
Always returns TRUE.
_ret() is used to return a NIL value to Xbase++. Calling this function does not exit the function but merely sets the return value. After the call an access to other C-API functions except for _conRelease() is not allowed anymore and the function should return immediately.
/*
Sets NIL as the return value and terminates the function.
*/
#include <xpppar.h>
_ret(<pList>);
return;
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.