64-bit fix. Changed the user-supplied IDs used with
[AROS.git] / workbench / libs / workbench / closeworkbenchobjecta.c
blobdb9702d70d4b9fbd654148faa840a5d6d115522e
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Close a named named drawer displayed by Workbench.
6 Lang: english
7 */
9 #include <exec/types.h>
10 #include <exec/ports.h>
11 #include <utility/tagitem.h>
12 #include <intuition/intuition.h>
14 #include "workbench_intern.h"
15 #include <workbench/workbench.h>
17 /*****************************************************************************
19 NAME */
21 #include <proto/workbench.h>
23 AROS_LH2(BOOL, CloseWorkbenchObjectA,
25 /* SYNOPSIS */
26 AROS_LHA(STRPTR, name, A0),
27 AROS_LHA(struct TagItem *, tags, A1),
29 /* LOCATION */
30 struct WorkbenchBase *, WorkbenchBase, 17, Workbench)
32 /* FUNCTION
34 INPUTS
36 RESULT
38 NOTES
40 EXAMPLE
42 BUGS
44 SEE ALSO
46 INTERNALS
48 ******************************************************************************/
50 AROS_LIBFUNC_INIT
52 /* No tags defined for this function... */
54 return FALSE;
56 AROS_LIBFUNC_EXIT
57 } /* CloseWorkbenchObjectA */