Revision history for Perl extension Win32API::File.
+0.1001 2006-07-02 14:04
+ - Minor doc tweak, release as standalone for sychronization with
+ with version in bleadperl (future 5.10)
+
0.10 2005-09-09
- Added GetFileAttributes() function and corresponding constants.
(Patches from Kenneth Olwing from 2004-11-12).
use vars qw( $VERSION @ISA );
use vars qw( @EXPORT @EXPORT_OK @EXPORT_FAIL %EXPORT_TAGS );
-$VERSION= '0.10';
+$VERSION= '0.1001';
use base qw( Exporter DynaLoader Tie::Handle IO::File );
$hFlop= CreateFile( "//./A:", GENERIC_READ(),
FILE_SHARE_READ(), [], OPEN_EXISTING(), 0, [] )
or die "Can't prevent others from writing to floppy: $^E\n";
- $hDisk= createFile( $sFilePath, FILE_READ_ATTRIBUTES(),
+ $hDisk= CreateFile( $sFilePath, FILE_READ_ATTRIBUTES(),
FILE_SHARE_READ()|FILE_SHARE_WRITE(), [], OPEN_EXISTING(), 0, [] )
or die "Can't read attributes of $sFilePath: $^E\n";
- $hTemp= createFile( "$ENV{Temp}/temp.$$", GENERIC_WRITE(), 0,
+ $hTemp= CreateFile( "$ENV{Temp}/temp.$$", GENERIC_WRITE(), 0,
CREATE_NEW(), FILE_FLAG_DELETE_ON_CLOSE()|attrLetsToBits("hst"), [] )
or die "Can't create temporary file, temp.$$: $^E\n";
VALID_NTFT PARTITION_NTFT
Comments, additions, and bug reports are welcomed. Please address
-technical questions that are not full bug reports to one of the Usenet
-newsgroups comp.lang.perl.modules or comp.lang.perl.moderated.
+technical questions that are not full bug reports to
+
+http://perlmonks.org/index.pl?node=Seekers%20of%20Perl%20Wisdom
Tye McQueen, tye@metronet.com, http://www.metronet.com/~tye/.