Update of /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-Constants In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21242/Win32-GUI-Constants
Modified Files: Constants.pm Tags.pm Log Message: Doc updates and add Win32::GUI::ReleaseNotes Index: Constants.pm =================================================================== RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-Constants/Constants.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Constants.pm 18 May 2006 19:40:36 -0000 1.4 --- Constants.pm 16 Jul 2006 11:09:32 -0000 1.5 *************** *** 17,24 **** =cut ! our $VERSION = '0.01'; require XSLoader; ! XSLoader::load('Win32::GUI::Constants', $VERSION); our ($Verbose, $AUTOLOAD); --- 17,26 ---- =cut ! our $VERSION = '0.01_01'; ! our $XS_VERSION = $VERSION; ! eval $VERSION; require XSLoader; ! XSLoader::load('Win32::GUI::Constants', $XS_VERSION); our ($Verbose, $AUTOLOAD); *************** *** 39,43 **** Win32::GUI::Constants is a module that provides definitions and export capabilities for Win32 API constant values. There is access to more ! than 1600 Win32 API constants. Nothing is exported by default. =head1 EXPORT SYNTAX --- 41,45 ---- Win32::GUI::Constants is a module that provides definitions and export capabilities for Win32 API constant values. There is access to more ! than 1700 Win32 API constants. Nothing is exported by default. =head1 EXPORT SYNTAX *************** *** 87,91 **** You can say C<BEGIN { $Win32::GUI::Constants::Verbose=1 }> before your ! C<use Win32::GUI::Constants qw( ... );> line to see how the specifications are being processed and what is actually being imported into your namespace. --- 89,93 ---- You can say C<BEGIN { $Win32::GUI::Constants::Verbose=1 }> before your ! C<< use Win32::GUI::Constants qw( ... ); >> line to see how the specifications are being processed and what is actually being imported into your namespace. *************** *** 142,148 **** =item B<-autoload> ! Causes Win32::GUI::Constants' AUTOLOAD subroutine to be exported, making all non-exported constants ! available in that namespace. =back --- 144,152 ---- =item B<-autoload> ! Causes Win32::GUI::Constants' C<AUTOLOAD()> subroutine to be exported, making all non-exported constants ! available in that namespace. Don't do this if the ! package you are exporting to already has an ! C<AUTOLOAD()> subroutine. =back *************** *** 336,340 **** No all constants are covered. If you find missing constants ! please raise a feature support at L<http://sourceforge.net/tracker/?group_id=16572&atid=366572> --- 340,344 ---- No all constants are covered. If you find missing constants ! please raise a feature request at L<http://sourceforge.net/tracker/?group_id=16572&atid=366572> Index: Tags.pm =================================================================== RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-Constants/Tags.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Tags.pm 1 Jun 2006 19:46:12 -0000 1.3 --- Tags.pm 16 Jul 2006 11:09:32 -0000 1.4 *************** *** 19,23 **** Win32::GUI::Constants::Tags provide export :tag definitions for use with ! Win32::GUI::Constants. It is seperated into a seperate module to improve the speed and memory usage of Win32::GUI::Constants if no :tag symbols are used on the import line. --- 19,23 ---- Win32::GUI::Constants::Tags provide export :tag definitions for use with ! Win32::GUI::Constants. It is implemented as a seperate module to improve the speed and memory usage of Win32::GUI::Constants if no :tag symbols are used on the import line. *************** *** 162,166 **** No all constants are covered. If you find missing constants ! please raise a feature support at L<http://sourceforge.net/tracker/?group_id=16572&atid=366572> --- 162,166 ---- No all constants are covered. If you find missing constants ! please raise a feature request at L<http://sourceforge.net/tracker/?group_id=16572&atid=366572>