home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _32e85dbcbfd421ec76805e8dda967084 < prev    next >
Encoding:
Text File  |  2004-06-01  |  423 b   |  14 lines

  1. package Tk::Event;
  2. use vars qw($VERSION $XS_VERSION @EXPORT_OK);
  3. END { CleanupGlue() }
  4. $VERSION = sprintf '4.%03d', q$Revision: #15 $ =~ /\D(\d+)\s*$/;
  5. $XS_VERSION = '804.027';
  6. use base  qw(Exporter);
  7. use XSLoader;
  8. @EXPORT_OK = qw($XS_VERSION DONT_WAIT WINDOW_EVENTS  FILE_EVENTS
  9.                 TIMER_EVENTS IDLE_EVENTS ALL_EVENTS);
  10. XSLoader::load 'Tk::Event',$XS_VERSION;
  11. require   Tk::Event::IO;
  12. 1;
  13. __END__
  14.