/*
**      $VER: ixdtbase.h 1.0
**
**      definition of IXDTBase
**
**      Copyright (c) 1996 by Ivan Sturlic
*/

#ifndef IXDT_IXDTBASE_H
#define IXDT_IXDTBASE_H

#ifndef EXEC_LIBRARIES
#include <exec/libraries.h>
#endif /* EXEC_LIBRARIES_H */
#include <proto/dos.h>

struct IXDTBase
{
 struct Library         dtb_LibNode;
 APTR                   dtb_SegList;
 struct ExecBase       *dtb_SysBase;

 /*** libraries opened by this datatype ***/
 struct DosLibrary     *dtb_DOSBase; 
};

#endif /* IXDT_IXDTBASE_H */
