home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 December (Special)
/
PCWorld_2005-12_Special_cd.bin
/
Bezpecnost
/
lsti
/
lsti.exe
/
framework-2.5.exe
/
ByteLoader.pm
< prev
next >
Wrap
Text File
|
2005-01-27
|
687b
|
41 lines
package ByteLoader;
use XSLoader ();
our $VERSION = '0.05';
XSLoader::load 'ByteLoader', $VERSION;
1;
__END__
=head1 NAME
ByteLoader - load byte compiled perl code
=head1 SYNOPSIS
use ByteLoader 0.04;
<byte code>
or just
perl -MByteLoader bytecode_file
=head1 DESCRIPTION
This module is used to load byte compiled perl code as produced by
C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
the byte code and insert it into the compiled code at the appropriate point.
=head1 AUTHOR
Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
=head1 SEE ALSO
perl(1).
=cut