Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / libs / muimaster / mui_allocaslrequest.c
blob23a16e26565c9c76853317d796c1e7376134ff12
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 HISTORY
45 *****************************************************************************/
47 AROS_LIBFUNC_INIT
49 return AllocAslRequest(reqType,tagList);
51 AROS_LIBFUNC_EXIT
53 } /* MUIA_AllocAslRequest */