Minor fixes to comments.
[AROS.git] / rom / intuition / initrequester.c
blobcd94513af9cccf70786f14f8b9191d3f08b4eca0
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
5 */
7 #include "intuition_intern.h"
9 /*****************************************************************************
11 NAME */
12 #include <proto/intuition.h>
14 AROS_LH1(void, InitRequester,
16 /* SYNOPSIS */
17 AROS_LHA(struct Requester *, requester, A0),
19 /* LOCATION */
20 struct IntuitionBase *, IntuitionBase, 23, Intuition)
22 /* FUNCTION
23 This function is OBSOLETE and should not be called. To preserve
24 compatibility with old programs, calling this function is a no-op.
26 INPUTS
27 requester - The struct Requester to be initialized
29 RESULT
30 None.
32 NOTES
33 This function is obsolete.
35 EXAMPLE
37 BUGS
39 SEE ALSO
40 Request(), EndRequest()
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
50 DEBUG_REQUEST(dprintf("InitRequester: req 0x%lx\n", requester));
52 IntuitionBase = IntuitionBase; /* shut up the compiler */
54 SANITY_CHECK(requester)
56 memset(requester, 0, sizeof(struct Requester));
58 AROS_LIBFUNC_EXIT
59 } /* InitRequester */