Initial import of Scalos. To decrease size I have
[AROS-Contrib.git] / scalos / libraries / iconobject / iconobject_base.h
blob5b856e830a7ceec074ba17b789cee88703205c97
1 // iconobject_base.h
2 // $Date$
3 // $Revision$
6 #ifndef ICONOBJBASE_H
7 #define ICONOBJBASE_H
9 #include <exec/types.h>
10 #include <exec/lists.h>
11 #include <exec/libraries.h>
12 #include <exec/semaphores.h>
14 struct IconObjectBase
16 struct Library iob_LibNode;
18 struct SegList *iob_SegList;
20 APTR iob_AmigaIcon;
21 struct SignalSemaphore iob_Semaphore;
23 struct List iob_ClassList;
25 BPTR iob_dtPathLock;
27 UWORD iob_pad;
30 #endif /* ICONOBJBASE_H */