From: Yves Orton Date: Sat, 8 Jun 2002 00:27:25 +0000 (+0200) Subject: The lib/Win32.pod part of X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d10f8d7a35cd614b8cd13ba7c35b1eff548c9414;p=p5sagit%2Fp5-mst-13.2.git The lib/Win32.pod part of Subject: [DOC PATCH] Re: platform check (CODE PATCH : libwin32 ) From: "Yves Orton" Message-ID: (manually applied and tweaked) p4raw-id: //depot/perl@17085 --- diff --git a/lib/Win32.pod b/lib/Win32.pod index 95f7562..a1bae2d 100644 --- a/lib/Win32.pod +++ b/lib/Win32.pod @@ -148,12 +148,47 @@ available drive letter. =item Win32::GetOSVersion() -[CORE] Returns the array (STRING, MAJOR, MINOR, BUILD, ID), where -the elements are, respectively: An arbitrary descriptive string, the -major version number of the operating system, the minor version -number, the build number, and a digit indicating the actual operating -system. For ID, the values are 0 for Win32s, 1 for Windows 9X and 2 -for Windows NT. In scalar context it returns just the ID. +[CORE] Returns the array (STRING, MAJOR, MINOR, BUILD, ID), where the +elements are, respectively: An arbitrary descriptive string, the major +version number of the operating system, the minor version number, the +build number, and a digit indicating the actual operating system. +For the ID, the values are 0 for Win32s, 1 for Windows 9X and 2 for +Windows NT/2000/XP. In scalar context it returns just the ID. + +Currently known values for ID MAJOR and MINOR are as follows: + + OS ID MAJOR MINOR + Win32s 0 - - + Windows 95 1 4 0 + Windows 98 1 4 10 + Windows Me 1 4 90 + Windows NT 3.51 2 3 51 + Windows NT 4 2 4 0 + Windows 2000 2 5 0 + Windows XP 2 5 1 + Windows .NET Server 2 5 1 + +Unfortunately as of June 2002 there is no way to distinguish between +.NET servers and XP servers without using additional modules. + +=item Win32::GetOSName() + +[EXT] In scalar context returns the name of the Win32 operating system +being used. In list context returns a two element list of the OS name +and whatever edition information is known about the particular build +(for Win9x boxes) and whatever service packs have been installed. +The latter is roughly equivalent to the first item returned by +GetOSVersion() in list context. + +Currently the possible values for the OS name are + + Win32s Win95 Win98 WinMe Win2000 WinXP/.Net WinNT3.51 WinNT4 + +This routine is just a simple interface into GetOSVersion(). More +specific or demanding situations should use that instead. Another +option would be to use POSIX::uname(), however the latter appears to +report only the OS family name and not the specific OS. In scalar +context it returns just the ID. =item Win32::GetShortPathName(PATHNAME)