my $enum_proc = new Win32::API( 'psapi.dll', 'EnumProcesses', [qw[P N P]], qw[I] ) or die "Cannot Enum Processes: $!\n"; # or my $enum_proc = new Win32::API( 'psapi.dll', 'EnumProcesses', ["P", "N", "P"], "I" ) or die "Cannot Enum Processes: $!\n"; # or, slightly confusing my $enum_proc = new Win32::API( 'psapi.dll', 'EnumProcesses', [ P => N => P => ], "I" ) or die "Cannot Enum Processes: $!\n"; # or, slightly perverse use constant P => "P"; use constant N => "N"; use constant I => "I"; my $enum_proc = new Win32::API( 'psapi.dll', 'EnumProcesses', [ P, N, P ], I ) or die "Cannot Enum Processes: $!\n"; #### perl -MHTTP::Daemon -MHTTP::Response -MLWP::Simple -e ' ; # The $d = new HTTP::Daemon and fork and getprint $d->url and exit;#spider ($c = $d->accept())->get_request(); $c->send_response( new #in the HTTP::Response(200,$_,$_,qq(Just another Perl hacker\n))); ' # web