add casts to zune macros to silence some warnings
[tangerine.git] / workbench / system / Wanderer / Tools / DiskInfo / diskinfo.h
blob82896576b988f7183b885cbbd048b127cc2126be
1 #ifndef _DISKINFO_H_
2 #define _DISKINFO_H_
4 /*
5 Copyright © 2005, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
10 #include <libraries/mui.h>
11 #include <intuition/classusr.h>
12 /*** Attributes *************************************************************/
14 /*+
15 [I..] CONST_STRPTR
16 Initial command line.
17 +*/
18 #define MUIA_DiskInfo_Initial (TAG_USER | 0x20000001)
20 /*+
21 [..G] STRPTR
22 +*/
23 #define MUIA_DiskInfo_Volname (TAG_USER | 0x20000002)
25 /*+
26 [..G] ULONG
27 +*/
28 #define MUIA_DiskInfo_Percent (TAG_USER | 0x20000003)
30 /*+
31 [ISG] ULONG
32 +*/
33 #define MUIA_DiskInfo_Aspect (TAG_USER | 0x20000004)
35 /*+
36 [ISG] ULONG
37 +*/
38 #define MUIA_DiskInfo_UserLevel (TAG_USER | 0x20000005)
40 /*** Variables **************************************************************/
41 extern struct MUI_CustomClass *DiskInfo_CLASS;
43 /*** Macros *****************************************************************/
44 #define DiskInfoObject BOOPSIOBJMACRO_START(DiskInfo_CLASS->mcc_Class)
46 /*** Prototypes *************************************************************/
47 BOOL DiskInfo_Initialize();
48 void DiskInfo_Deinitialize();
50 #endif /* _DISKINFO_H_ */