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

struct Library *MPEGABase = NULL;
extern unsigned long _MPEGABaseVer;

void _INIT_5_MPEGABase()
{
  if (!(MPEGABase = OpenLibrary("mpega.library",_MPEGABaseVer)))
    exit(20);
}

void _EXIT_5_MPEGABase()
{
  if (MPEGABase)
    CloseLibrary(MPEGABase);
}
