muimaster.library: migrate handling of SelectChange and DoubleClick from Listview...
[AROS.git] / workbench / libs / muimaster / mui_aslrequest.c
blobfcb37159f23c4d3f1fe5dc66a1eb67516b6e8165
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(BOOL, MUI_AslRequest,
16 /* SYNOPSIS */
17 AROS_LHA(APTR, requester, A0),
18 AROS_LHA(struct TagItem *, tagList, A1),
20 /* LOCATION */
21 struct Library *, MUIMasterBase, 9, MUIMaster)
23 /* FUNCTION
24 Interface to asl.library.
26 INPUTS
28 RESULT
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
37 asl.library/AslRequest()
39 INTERNALS
41 *****************************************************************************/
43 AROS_LIBFUNC_INIT
45 return AslRequest(requester, tagList);
47 AROS_LIBFUNC_EXIT
49 } /* MUIA_AslRequest */