2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
6 #include "icon_intern.h"
8 /*********************************************************
11 #include <proto/icon.h>
13 AROS_LH1(struct DiskObject
*, GetDefDiskObject
,
16 AROS_LHA(LONG
, type
, D0
),
19 struct Library
*, IconBase
, 20, Icon
)
22 Gets the default icon for the supplied type of icon.
25 type - type of icon to get default diskobject for.
29 DiskObject structure or NULL if an error occured. The error may
30 be obtained by IoErr().
39 PutDefDiskObject(), GetDiskObjectNew()
43 *****************************************************************************/
47 return GetIconTags(NULL
, ICONGETA_GetDefaultType
, type
, TAG_DONE
);
50 } /* GetDefDiskObject() */