summaryrefslogtreecommitdiff
path: root/bin/Process_Win32.pm
blob: 7caca7c494b677cac6c8e226686793521117f8c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# $Id$
package Process;

use Win32::Process;

sub Create
{
  my $name = shift;
  my $args = shift;
  my $self = [];

  my $console = 0;

  if ($newwindow eq "yes")
  {
    $console = CREATE_NEW_CONSOLE;
  }
  else
  {
    $console = 0;
  }

  Win32::Process::Create ($self->[0], $name, $name." ".$args, 0,
                          $console, ".");
  bless $self;
}

sub Kill
{
  my $self = shift;
  Win32::Process::Kill ($self->[0], -1);
}

sub Terminate
{
  my $self = shift;
  Win32::Process::Kill ($self->[0], -1);
}

sub Wait
{
  my $self = shift;
  Win32::Process::Wait ($self->[0], INFINITE);
}

sub TimedWait
{
  my $self = shift;
  my $maxtime = shift;
  Win32::Process::Wait ($self->[0], $maxtime * 1000);
  $status = 0;
  Win32::Process::GetExitCode ($self->[0], $status);
  return $status;
}

1;