mirror of
https://github.com/deadw00d/AROS.git
synced 2025-12-08 06:20:50 +00:00
git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@55802 fb15a70f-31f2-0310-bbcc-cdcc74a49acc
27 lines
925 B
C
27 lines
925 B
C
#ifndef SYSEXPLORER_CLASSES_H
|
|
#define SYSEXPLORER_CLASSES_H
|
|
|
|
/*
|
|
Copyright © 2013-2018, The AROS Development Team. All rights reserved.
|
|
$Id$
|
|
*/
|
|
|
|
#include <exec/types.h>
|
|
#include <libraries/mui.h>
|
|
|
|
/*** Identifier base ********************************************************/
|
|
#define MUIB_PropertyWin (TAG_USER | 0x00000000)
|
|
|
|
/*** Attributes ****************************************************************/
|
|
#define MUIA_PropertyWin_Object (MUIB_PropertyWin | 0x00000000)
|
|
|
|
/*** Variables **************************************************************/
|
|
extern struct MUI_CustomClass *ComputerWindow_CLASS;
|
|
extern struct MUI_CustomClass *GenericWindow_CLASS;
|
|
extern struct MUI_CustomClass *DevicePage_CLASS;
|
|
|
|
/*** Macros *****************************************************************/
|
|
#define DevicePageObject BOOPSIOBJMACRO_START(DevicePage_CLASS->mcc_Class)
|
|
|
|
#endif /* SYSEXPLORER_CLASSES_H */
|