Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perlglue.xs

    rb363d83 r65fea01  
    1313#define SV_IS_CODEREF(sv) (SvROK((sv)) && SvTYPE(SvRV((sv))) == SVt_PVCV)
    1414
    15 MODULE = BarnOwl                PACKAGE = BarnOwl               
     15        /*************************************************************
     16         * NOTE
     17         *************************************************************
     18         * These functions, when they are intended to be user-visible,
     19         * are document in perlwrap.pm. If you add functions to this
     20         * file, add the appropriate documentation there!
     21         *
     22         * If the function is simple enough, we simply define its
     23         * entire functionality here in XS. If, however, it needs
     24         * complex argument processing or something, we define a
     25         * simple version here that takes arguments in as flat a
     26         * manner as possible, to simplify the XS code, with a name
     27         * with a trailing `_internal', and write a perl wrapper in
     28         * perlwrap.pm that munges the arguments as appropriate and
     29         * calls the internal version.
     30         */
     31
     32MODULE = BarnOwl                PACKAGE = BarnOwl
    1633
    1734char *
Note: See TracChangeset for help on using the changeset viewer.