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

struct Library *SCRBase = NULL;
extern unsigned long _SCRBaseVer;

void _INIT_5_SCRBase()
{
  if (!(SCRBase = OpenLibrary("screens.library",_SCRBaseVer)))
    exit(20);
}

void _EXIT_5_SCRBase()
{
  if (SCRBase)
    CloseLibrary(SCRBase);
}
