This is BasicLib version 2.01

This Application provides BasicLibraries for some programs.

Please put this application either in the root directory of your
Hard Drive, or if you have the new Boot, then inside your !Boot.Resources
directory.

======================================================================

Note to Developers
------------------

This library system is designed to provide a centralised 
storage area for libraries, if you have several programs this
has a vast storage advantage.

The program uses Basil to load the libraries into RMA.

To use include
  LIBRARY "<BasicLib>"
  PROClibrary_init
To link a library to your program.
  PROClibrary_ensure(fullname$,version%)
Where full name is the name of the library, taken from the
first REM line (line 0) of the library.  The format of the REM line is :
 REM {name} {version} {any other info}
eg
 REM MyLib 1.00 Provides WIMP routines for MyApp.

To kill a library (freeing memory), use :
  PROClibrary_destroy(fullname$)
 