Tabs to spaces, more consistent formatting.
[AROS.git] / workbench / libs / camd / endclusternotify.c
blob98bc0c2126b1e004b82d461204cd3badbc095fff
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
10 #include <proto/exec.h>
12 #include "camd_intern.h"
14 /*****************************************************************************
16 NAME */
18 AROS_LH1(void, EndClusterNotify,
20 /* SYNOPSIS */
21 AROS_LHA(struct ClusterNotifyNode *, cn,A0),
23 /* LOCATION */
24 struct CamdBase *, CamdBase, 38, Camd)
26 /* FUNCTION
27 void EndClusterNotify(struct ClusterNotifyNode *)
29 INPUTS
30 pointer to previously added ClusterNotifyNode.
32 RESULT
33 void
35 NOTES
36 DO NOT call with a ClusterNotifyNode that has not been added.
38 EXAMPLE
40 BUGS
41 None known
43 SEE ALSO
44 StartClusterNotify()
46 INTERNALS
48 HISTORY
49 2001-01-12 ksvalast first created
50 2005-05-07 Lyle Hazelwood first implemented
52 *****************************************************************************/
54 AROS_LIBFUNC_INIT
56 if(cn == NULL) return;
58 Remove((struct Node *)&cn->cnn_Node);
59 return;
61 AROS_LIBFUNC_EXIT