You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
643 B
40 lines
643 B
package ByteLoader;
|
|
|
|
use XSLoader ();
|
|
|
|
$VERSION = 0.04;
|
|
|
|
XSLoader::load 'ByteLoader', $VERSION;
|
|
|
|
# Preloaded methods go here.
|
|
|
|
1;
|
|
__END__
|
|
|
|
=head1 NAME
|
|
|
|
ByteLoader - load byte compiled perl code
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
use ByteLoader 0.04;
|
|
<byte code>
|
|
|
|
use ByteLoader 0.04;
|
|
<byte code>
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This module is used to load byte compiled perl code. 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 <[email protected]> based on the ideas of Tim Bunce and others.
|
|
|
|
=head1 SEE ALSO
|
|
|
|
perl(1).
|
|
|
|
=cut
|