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

struct Library *TDCoreModuleBase = NULL;
extern unsigned long _TDCoreModuleBaseVer;

void _INIT_5_TDCoreModuleBase()
{
  if (!(TDCoreModuleBase = OpenLibrary("tdcoremodule.library",_TDCoreModuleBaseVer)))
    exit(20);
}

void _EXIT_5_TDCoreModuleBase()
{
  if (TDCoreModuleBase)
    CloseLibrary(TDCoreModuleBase);
}
