added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / rom / workbench / wbinfo.c
blob62da462f8b88b24e4612f07c9bd4aa4ff45def5d
1 /*
2 Copyright © 1995-2007, 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
53 // FIXME: screen argument is ignored
55 return OpenWorkbenchObject
57 "WANDERER:Tools/Info",
58 WBOPENA_ArgLock, (IPTR) lock,
59 WBOPENA_ArgName, (IPTR) name,
60 TAG_DONE
63 AROS_LIBFUNC_EXIT
64 } /* WBInfo() */