Devel::AssertOS::MSWin32 - Devel::AssertOS::MSWin32 documentation


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

Index


Code Index:

COPYRIGHT and LICENCE

Top


Devel-CheckOS documentation Contained in the Devel-CheckOS distribution.

# $Id: MSWin32.pm,v 1.4 2008/11/05 22:52:34 drhyde Exp $

package Devel::AssertOS::MSWin32;

use Devel::CheckOS;

$VERSION = '1.2';

sub os_is { $^O eq 'MSWin32' ? 1 : 0; }

sub expn {
join("\n",
"The operating system is Microsoft Windows, and perl was built using",
"the Win32 API"
)
}

Devel::CheckOS::die_unsupported() unless(os_is());

1;