added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / icon / putdiskobject.c
blob6395f44f0e705876049621dc6187e8800edb2339
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>
13 AROS_LH2(BOOL, PutDiskObject,
15 /* SYNOPSIS */
16 AROS_LHA(CONST_STRPTR, name, A0),
17 AROS_LHA(struct DiskObject *, icon, A1),
19 /* LOCATION */
20 struct Library *, IconBase, 14, 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 PutIconTags
44 name, icon,
45 ICONPUTA_NotifyWorkbench, TRUE,
46 TAG_DONE
49 AROS_LIBFUNC_EXIT
50 } /* PutDiskObject() */