Minor fixes to comments.
[AROS.git] / rom / misc / misc_intern.h
blobcc879682ffb3ea5d7f1e8df4d368f85f2ba230bb
1 /*
2 Copyright © 1995-2006, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Internal data structures for misc.resource
6 Lang: English
7 */
9 #ifndef MISC_INTERN_H
10 #define MISC_INTERN_H
12 #ifndef EXEC_TYPES_H
13 #include <exec/types.h>
14 #endif
15 #ifndef EXEC_NODES_H
16 #include <exec/nodes.h>
17 #endif
18 #ifndef EXEC_SEMAPHORES_H
19 #include <exec/semaphores.h>
20 #endif
21 #ifndef RESOURCES_MISC_H
22 #include <resources/misc.h>
23 #endif
25 #include <exec/libraries.h>
27 struct MiscBase
29 struct Node mb_Node;
31 struct SignalSemaphore mb_Lock;
33 char *mb_owners[MR_MAXUNIT];
36 #define GPB(x) ((struct MiscBase *)x)
38 #endif //MISC_INTERN_H