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

struct Library *DitoBase = NULL;
extern unsigned long _DitoBaseVer;

void _INIT_5_DitoBase()
{
  if (!(DitoBase = OpenLibrary("dito.library",_DitoBaseVer)))
    exit(20);
}

void _EXIT_5_DitoBase()
{
  if (DitoBase)
    CloseLibrary(DitoBase);
}
