Help for this page

Select Code to Download


  1. or download this
    use Win32::API qw( CreateIoCompletionPort N kernel32 N N N N );
    use Win32::API qw( ... );
    ...
    # ...
    my $hIOCP= CreateIoCompletionPort( $hSocket, 0, 0, 0 );
    # ...
    
  2. or download this
    sub Win32::API::import {
        my( $class, $sub, $ret, $lib, @args )= @_;
    ...
            $obj->Call( @_ );
        };
    }