added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / muimaster / mui_allocaslrequest.c
blob1b897ee81fb9a4b09f2ad8c2c3a6645775b061a5
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
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
34 The function itself is a bug ;-) Remove it!
36 SEE ALSO
38 INTERNALS
40 HISTORY
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
46 return AllocAslRequest(reqType,tagList);
48 AROS_LIBFUNC_EXIT
50 } /* MUIA_AllocAslRequest */