1 #ifndef _SUPPORT_BUILTIN_H_
2 #define _SUPPORT_BUILTIN_H_
5 Copyright © 2003, The AROS Development Team. All rights reserved.
8 Headers for the builtin icon images and support functions.
11 /*** Prototypes *************************************************************/
12 BOOL
__GetBuiltinImage_WB(struct Image
*image
, LONG type
, BOOL selected
, struct IconBase
*IconBase
);
13 struct DiskObject
*__GetBuiltinIcon_WB(LONG type
, struct IconBase
*IconBase
);
15 /*** Macros *****************************************************************/
16 #define GetBuiltinImage(image, type, selected) (__GetBuiltinImage_WB((image), (type), (selected), LB(IconBase)))
17 #define GetBuiltinIcon(type) (__GetBuiltinIcon_WB((type), LB(IconBase)))
19 #endif /* _SUPPORT_BUILTIN_H_ */