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

struct Library *InstallerGuiBase = NULL;
extern unsigned long _InstallerGuiBaseVer;

void _INIT_5_InstallerGuiBase()
{
  if (!(InstallerGuiBase = OpenLibrary("installergui.library",_InstallerGuiBaseVer)))
    exit(20);
}

void _EXIT_5_InstallerGuiBase()
{
  if (InstallerGuiBase)
    CloseLibrary(InstallerGuiBase);
}
