Help for this page

Select Code to Download


  1. or download this
    
    
    ...
    sub Win32::Evt::Wevtutil::Last { ... }
    sub Win32::Evt::EventLog::GetNth { ... }
    sub Win32::Evt::Wevtutil::GetNth { ... }
    
  2. or download this
    package Win32::Evt::Darllenydd;
    use Moo::Role;
    ...
    sub Win32::Evt::EventLog::GetNth { ... }
    no Moo;
    ...
    
  3. or download this
    use parent 'Win32::Evt::Darllenydd';
    ...
    ...
    sub Last { Carp::croak( "Last unimplemented" ); }
    sub GetNth{ Carp::croak( "GetNth unimplemented" ); }
    ...
    
  4. or download this
    Win32::DiEvt
    Win32::DiEvt::EventLog
    Win32::DiEvt::Wevtutil