Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git] / workbench / libs / reqtools / stubs / rtgetstring.c
blobd828c8c6d58d08980760d9adc8b50f342f883e4d
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE ULONG
10 #include <utility/tagitem.h>
11 #include <libraries/reqtools.h>
13 #define NO_INLINE_STDARG /* turn off inline def */
14 #include <proto/reqtools.h>
16 extern struct ReqToolsBase * ReqToolsBase;
18 /*****************************************************************************
20 NAME */
21 ULONG rtGetString (
23 /* SYNOPSIS */
24 UBYTE *buffer,
25 ULONG maxchars,
26 const char *title,
27 struct rtReqInfo *reqinfo,
28 Tag tag1,
29 ...)
31 /* FUNCTION
33 INPUTS
35 RESULT
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
45 INTERNALS
47 HISTORY
49 *****************************************************************************/
51 AROS_SLOWSTACKTAGS_PRE(tag1)
53 retval = rtGetStringA(buffer, maxchars, title, reqinfo, AROS_SLOWSTACKTAGS_ARG(tag1));
55 AROS_SLOWSTACKTAGS_POST
57 } /* rtGetString */