New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / workbench / wbinfo.c
blob312b1d01c47062eb4ccca6e5cf67a59ea125084c
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
5 Open the file information window for a specified file.
6 */
8 #include <exec/types.h>
9 #include <exec/ports.h>
10 #include <utility/tagitem.h>
11 #include <dos/dos.h>
12 #include <workbench/workbench.h>
14 #include "workbench_intern.h"
15 #include "support.h"
17 #include <aros/debug.h>
19 /*****************************************************************************
21 NAME */
22 #include <proto/workbench.h>
24 AROS_LH3(BOOL, WBInfo,
25 /* SYNOPSIS */
26 AROS_LHA(BPTR, lock, A0),
27 AROS_LHA(CONST_STRPTR, name, A1),
28 AROS_LHA(struct Screen *, screen, A2),
30 /* LOCATION */
31 struct WorkbenchBase *, WorkbenchBase, 15, Workbench)
33 /* FUNCTION
35 INPUTS
37 RESULT
39 NOTES
41 EXAMPLE
43 BUGS
45 SEE ALSO
47 INTERNALS
49 ******************************************************************************/
51 AROS_LIBFUNC_INIT
52 AROS_LIBBASE_EXT_DECL(struct WorkbenchBase *, WorkbenchBase)
54 // FIXME: screen argument is ignored
56 return OpenWorkbenchObject
58 "WANDERER:Tools/Info",
59 WBOPENA_ArgLock, (IPTR) lock,
60 WBOPENA_ArgName, (IPTR) name,
61 TAG_DONE
64 AROS_LIBFUNC_EXIT
65 } /* WBInfo() */