You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
There are four functions to call into Perl in XS, of which only one is currently supported.
I32 call_sv(SV* sv, I32 flags);
I32 call_pv(char *subname, I32 flags);
I32 call_method(char *methname, I32 flags);
I32 call_argv(char *subname, I32 flags, char **argv);
What would be the best way to represent different combinations of flags? Some of them are mutually exclusive, others depend on other flags.
A further improvement can be a macro that hides different ways to call a sub, and handles argument passing, something like:
The text was updated successfully, but these errors were encountered: