Use dos.library/CreateNewProc() instead of alib/CreateNewProcTags()
[tangerine.git] / compiler / alib / addappwindowdropzone.c
blobde98dcb3796135b313c42ce6db55cf19b3ea03bc
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of workbench.library/AddAppWindowDropZoneA()
6 Lang: english
7 */
8 #define AROS_TAGRETURNTYPE struct AppWindowDropZone *
9 #include <dos/bptr.h>
10 #include <utility/tagitem.h>
12 /*****************************************************************************
14 NAME */
15 #define NO_INLINE_STDARG /* turn off inline def */
16 #include <proto/workbench.h>
18 struct AppWindowDropZone * AddAppWindowDropZone(
20 /* SYNOPSIS */
21 struct AppWindow * aw,
22 ULONG id,
23 ULONG userdata,
24 Tag tag1,
25 ...)
27 /* FUNCTION
28 This is the varargs version of workbench.library/AddAppWindowDropZoneA().
29 For information see workbench.library/AddAppWindowDropZoneA().
31 INPUTS
33 RESULT
35 NOTES
37 EXAMPLE
39 BUGS
41 SEE ALSO
42 workbench/AddAppWindowDropZoneA()
44 INTERNALS
46 HISTORY
48 *****************************************************************************/
50 AROS_SLOWSTACKTAGS_PRE(tag1)
51 retval = AddAppWindowDropZoneA( aw, id, userdata, AROS_SLOWSTACKTAGS_ARG(tag1));
52 AROS_SLOWSTACKTAGS_POST
53 } /* AddAppWindowDropZone */