Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / libs / icon / newdiskobject.c
blobb01657c87ebeae7fc6c5dc24158b42732ca17dc7
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <exec/types.h>
7 #include <workbench/icon.h>
8 #include <proto/icon.h>
10 #include "icon_intern.h"
12 # include <aros/debug.h>
14 /*****************************************************************************
16 NAME */
18 AROS_LH1(struct DiskObject *, NewDiskObject,
20 /* SYNOPSIS */
21 AROS_LHA(ULONG, type, D0),
23 /* LOCATION */
24 struct Library *, IconBase, 29, Icon)
26 /* FUNCTION
27 Create empty diskobject structure.
29 INPUTS
30 type - WBDISK, WBDRAWER, WBTOOL, WBPROJECT,
31 WBGARBAGE, WBDEVICE or WBKICK
33 RESULT
35 NOTES
36 Not implemented.
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 INTERNALS
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
50 # warning TODO: Implement icon/NewDiskObject()
51 aros_print_not_implemented("icon/NewDiskObject()");
53 return NULL;
55 AROS_LIBFUNC_EXIT
56 } /* NewDiskObject() */