DynaLoader
DynaLoader
NAME
DynaLoader - Dynamically load C libraries into Perl code
SYNOPSIS
package YourPackage; require DynaLoader; @ISA = qw(... DynaLoader ...); bootstrap YourPackage; # optional method for 'global' loading sub dl_load_flags { 0x01 }
DESCRIPTION
This document defines a standard generic interface to the dynamic linking mechanisms available on many platforms. Its primary purpose is to implement automatic dynamic loading of Perl modules.
This document serves as both a specification for anyone wishing to implement the DynaLoader for a new platform and as a guide for anyone wishing to use the DynaLoader directly in an application.
The DynaLoader i