added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / icon / getdiskobject.c
blob272eda4d1f609fc3e8933d2e65f8c4db60ea5693
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "icon_intern.h"
8 /*****************************************************************************
10 NAME */
11 #include <clib/icon_protos.h>
12 #include <exec/types.h>
14 AROS_LH1(struct DiskObject *, GetDiskObject,
16 /* SYNOPSIS */
17 AROS_LHA(CONST_STRPTR, name, A0),
19 /* LOCATION */
20 struct Library *, IconBase, 13, Icon)
22 /* FUNCTION
24 INPUTS
26 RESULT
28 NOTES
30 EXAMPLE
32 BUGS
34 SEE ALSO
36 INTERNALS
38 *****************************************************************************/
40 AROS_LIBFUNC_INIT
42 return GetIconTagList(name, NULL);
44 AROS_LIBFUNC_EXIT
45 } /* GetDiskObject() */