Safer handling of Booleans.
[AROS.git] / workbench / libs / muimaster / mui_allocaslrequest.c
blobe8c12116eb6cc2cc64f7e7fb4cdf3863b1667255
1 /*
2 Copyright © 2002-2007, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/muimaster.h>
7 #include <proto/asl.h>
9 #include "muimaster_intern.h"
11 /*****************************************************************************
13 NAME */
14 AROS_LH2(APTR, MUI_AllocAslRequest,
16 /* SYNOPSIS */
17 AROS_LHA(unsigned long, reqType, D0),
18 AROS_LHA(struct TagItem *, tagList, A0),
20 /* LOCATION */
21 struct Library *, MUIMasterBase, 8, MUIMaster)
23 /* FUNCTION
24 Interface to asl.library.
26 INPUTS
27 see asl.library/AllocAslRequest()
29 RESULT
30 Pointer to AslRequest
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
39 asl.library/AllocAslRequest()
41 INTERNALS
43 *****************************************************************************/
45 AROS_LIBFUNC_INIT
47 return AllocAslRequest(reqType, tagList);
49 AROS_LIBFUNC_EXIT
51 } /* MUIA_AllocAslRequest */