revert between 56095 -> 55830 in arch
[AROS.git] / arch / .unmaintained / morphos / Include / libcore / base.h
blob9012fcd499c124109697da3abf6fed565abe1f6f
1 #ifndef LIBCORE_BASE_H
2 #define LIBCORE_BASE_H
4 /*
5 ** $VER: base.h 37.15 (14.8.97)
6 **
7 ** Common structure header for all libraries.
8 **
9 ** (C) Copyright 1996-97 Andreas R. Kleinert
10 ** All Rights Reserved.
13 #ifdef __MAXON__
14 # ifndef EXEC_LIBRARIES
15 # include <exec/libraries.h>
16 # endif
17 # ifndef DOS_DOS
18 # include <dos/dos.h>
19 # endif
20 #else
21 # ifndef EXEC_LIBRARIES_H
22 # include <exec/libraries.h>
23 # endif /* EXEC_LIBRARIES_H */
24 # ifndef DOS_DOS_H
25 # include <dos/dos.h>
26 # endif /* DOS_DOS_H */
27 #endif
29 struct LibHeader
31 struct Library lh_LibNode;
32 BPTR lh_SegList;
33 struct ExecBase *lh_SysBase;
36 #endif /* LIBCORE_BASE_H */