arch/cpu.resource: remove dead code
[AROS.git] / workbench / classes / zune / aboutwindow / aboutwindow_private.h
blob7b70bb796fbdc1e45726f4f203d56ee8edc21eb2
1 #ifndef _ABOUTWINDOW_PRIVATE_H_
2 #define _ABOUTWINDOW_PRIVATE_H_
4 /*
5 Copyright © 2003-2004, The AROS Development Team. All rights reserved.
6 This file is part of the AboutWindow class, which is distributed under
7 the terms of version 2.1 of the GNU Lesser General Public License.
9 $Id$
12 #include <exec/types.h>
13 #include <intuition/classusr.h>
15 /*** Instance data **********************************************************/
16 struct AboutWindow_DATA
18 /*- Private ------------------------------------------------------------*/
19 struct Catalog *awd_Catalog;
20 APTR awd_Pool;
22 /*- Protected ----------------------------------------------------------*/
23 Object *awd_RootGroup,
24 *awd_ImageGroup,
25 *awd_ImageObject,
26 *awd_VersionObject,
27 *awd_CopyrightObject,
28 *awd_DescriptionGroup,
29 *awd_DescriptionObject;
31 /*- Public -------------------------------------------------------------*/
32 STRPTR awd_Title,
33 awd_VersionNumber,
34 awd_VersionDate,
35 awd_VersionExtra,
36 awd_Copyright,
37 awd_Description;
40 #endif /* _ABOUTWINDOW_PRIVATE_H_ */