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