applied suggested patch, with win32 and PERL_OBJECT additions
[p5sagit/p5-mst-13.2.git] / ext / ByteLoader / ByteLoader.pm
CommitLineData
b295d113 1package ByteLoader;
2
3use strict;
4use vars qw($VERSION @ISA);
5
6require DynaLoader;
7
8@ISA = qw(DynaLoader);
9
10$VERSION = 0.01;
11
12bootstrap ByteLoader $VERSION;
13
14# Preloaded methods go here.
15
161;
17__END__
18
19=head1 NAME
20
21ByteLoader - load byte compiled perl code
22
23=head1 SYNOPSIS
24
25 use ByteLoader 0.01;
26 <byte code>
27
28 use ByteLoader 0.01;
29 <byte code>
30
31=head1 DESCRIPTION
32
33This module is used to load byte compiled perl code. It uses the source
34filter mechanism to read the byte code and insert it into the compiled
35code at the appropriate point.
36
37=head1 AUTHOR
38
39Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
40
41=head1 SEE ALSO
42
43perl(1).
44
45=cut