- call_argv
-
Performs a callback to the specified Perl sub. See perlcall.
NOTE: the perl_ form of this function is deprecated.
I32 call_argv(const char* sub_name, I32 flags, char** argv)
|
|
- call_method
-
Performs a callback to the specified Perl method. The blessed object must be on the
stack. See perlcall.
NOTE: the perl_ form of this function is deprecated.
I32 call_method(const char* methname, I32 flags)
|
|
- call_pv
-
Performs a callback to the specified Perl sub. See perlcall.
NOTE: the perl_ form of this function is deprecated.
I32 call_pv(const char* sub_name, I32 flags)
|
|
- call_sv
-
Performs a callback to the Perl sub whose name is in the SV. See perlcall.
NOTE: the perl_ form of this function is deprecated.
I32 call_sv(SV* sv, I32 flags)
|
|
- ENTER
-
Opening bracket on a callback. See LEAVE and perlcall.
- eval_pv
-
Tells Perl to eval the given string and return an SV* result.
NOTE: the perl_ form of this function is deprecated.
SV* eval_pv(const char* p, I32 croak_on_error)
|
|
- eval_sv
-
Tells Perl to eval the string in the SV.
NOTE: the perl_ form of this function is deprecated.
I32 eval_sv(SV* sv, I32 flags)
|
|
- FREETMPS
-
Closing bracket for temporaries on a callback. See SAVETMPS and perlcall.
- LEAVE
-
Closing bracket on a callback. See ENTER and perlcall.
- SAVETMPS
-
Opening bracket for temporaries on a callback. See FREETMPS and perlcall.