Safer handling of Booleans.
[AROS.git] / workbench / libs / muimaster / classes / popasl_private.h
blob5ea5a150a5ee9072d58eead1210065a17b28d600
1 #ifndef _POPASL_PRIVATE_H_
2 #define _POPASL_PRIVATE_H_
4 #include <exec/types.h>
5 #include <utility/hooks.h>
6 #include <utility/tagitem.h>
8 /*** Instance data **********************************************************/
9 struct Popasl_DATA
11 int type;
12 APTR asl_req;
14 struct Hook open_hook;
15 struct Hook close_hook;
16 struct Hook *start_hook, *stop_hook;
18 struct TagItem tag_list[20]; /* According to docs we need at least 16 */
20 struct Process *asl_proc;
23 #endif /* _POPASL_PRIVATE_H_ */