Help for this page

Select Code to Download


  1. or download this
    ExtUtils::Constant::WriteConstants (
        NAME => 'Foo::Bar',
        NAMES => [ qw(EPOLLIN EPOLLOUT) ]
    );
    
  2. or download this
    #include "const-c.inc"
    #include <sys/epoll.h>  // hail mary...
    
    MODULE = Foo::Bar    PACKAGE = Foo::Bar
    INCLUDE: const-xs.inc
    
  3. or download this
    is(Foo::Bar::EPOLLOUT, 4);