#include <exec/libraries.h>
#include <proto/exec.h>

struct Library *WEBase = NULL;
extern unsigned long _WEBaseVer;

void _INIT_5_WEBase()
{
  if (!(WEBase = OpenLibrary("wildengineer.library",_WEBaseVer)))
    exit(20);
}

void _EXIT_5_WEBase()
{
  if (WEBase)
    CloseLibrary(WEBase);
}
