Library class for DLL registration.
Manages the DLL control via a global FBLibrary object. For each DLL to be created, an implementation of the FBLibrary functions will be necessary, see the sample code to see an example implementation.
Definition at line 906 of file fbcomponent.h.
#include <fbcomponent.h>
Public Member Functions |
|
virtual bool | LibInit () |
Initialize library. |
|
virtual bool | LibOpen () |
Open library. |
|
virtual bool | LibReady () |
Is library ready? Ready the library to begin
accessing the functions. |
|
virtual bool | LibClose () |
Close library. |
|
virtual bool | LibRelease () |
Release library. |
virtual bool LibInit | ( | ) | [virtual] |
Initialize library.
Initial load of DLL into memory.
Reimplemented from FBLibraryBase.
virtual bool LibOpen | ( | ) | [virtual] |
Open library.
Library is opened to peruse the exported symbols.
Reimplemented from FBLibraryBase.
virtual bool LibReady | ( | ) | [virtual] |
Is library ready? Ready the library to begin accessing the functions.
Any on library activation code should be placed in this function.
Reimplemented from FBLibraryBase.
virtual bool LibClose | ( | ) | [virtual] |
virtual bool LibRelease | ( | ) | [virtual] |