include/muimaster/macros.h: get() compiler delint
[AROS.git] / workbench / libs / icon / support_builtin.h
blob12ad612d702ab83bf2374c048eb1fd9f111a2015
1 #ifndef _SUPPORT_BUILTIN_H_
2 #define _SUPPORT_BUILTIN_H_
4 /*
5 Copyright © 2003, The AROS Development Team. All rights reserved.
6 $Id$
8 Headers for the builtin icon images and support functions.
9 */
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_ */