boot.library is no more, *.handler to *-handler.
[AROS.git] / compiler / alib / createnewproctags.c
blobfb11a29ef8a7caf8636bbc4417c488bd3d96bfcc
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of dos.library/CreateNewProc()
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE struct Process *
10 #include <dos/dosextens.h>
11 #include <utility/tagitem.h>
13 /*****************************************************************************
15 NAME */
16 #define NO_INLINE_STDARG /* turn off inline def */
17 #include <proto/dos.h>
19 struct Process * CreateNewProcTags (
21 /* SYNOPSIS */
22 Tag tag1,
23 ...)
25 /* FUNCTION
26 This is the varargs version of dos.library/CreateNewProc().
27 For information see dos.library/CreateNewProc().
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
40 dos.library/CreateNewProc()
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_SLOWSTACKTAGS_PRE(tag1)
49 retval = CreateNewProc (AROS_SLOWSTACKTAGS_ARG(tag1));
50 AROS_SLOWSTACKTAGS_POST
51 } /* CreateNewProcTags */