diff options
author | Jan Dubois <jand@activestate.com> | 1999-03-06 22:42:56 +0100 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-23 22:20:10 +0000 |
commit | 8fe0a5c4e04be608dcf92965347231ca4e6d5db7 (patch) | |
tree | c12d6b6ae6ccb4175db3655ba61f9e1e141f60fb /pod | |
parent | f505c9832e74f948e2721f6c36b348502f15804c (diff) | |
download | perl-8fe0a5c4e04be608dcf92965347231ca4e6d5db7.tar.gz |
perldelta.pod changes for Win32::* functions
Message-ID: <36e49281.50337171@smtp1.ibm.net>
p4raw-id: //depot/perl@3133
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 217967627d..215e68d0d3 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -357,6 +357,28 @@ The timelocal() and timegm() functions used to silently return bogus results when the date exceeded the machine's integer range. They consistently croak() if the date falls in an unsupported range. +=item Win32 + +The error return value in list context has been changed for all functions +that return a list of values. Previously these functions returned a list +with a single element C<undef> in case an error occurred. Now these functions +return the empty list in these situations. This applies to the following +functions: + + Win32::FsType + Win32::GetOSVersion + +The remaining functions are unchanged and continue to return C<undef> on +error even in list context. + +The Win32::SetLastError(ERROR) function has been added as a complement +to the Win32::GetLastError() function. + +The new Win32::GetFullPathName(FILENAME) returns the full absolute +pathname for FILENAME in scalar context. In list context it returns +a two element list containing the fully qualified directory name and +the filename. + =back =head2 Pragmata |