revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / classes / zune / aboutbox / Aboutbox_private.h
blob6820830c420d7f48a7bccd32c70322625ff96644
1 #ifndef _ABOUTBOX_PRIVATE_H
2 #define _ABOUTBOX_PRIVATE_H
4 /*
5 Copyright © 2011, Thore Böckelmann. All rights reserved.
6 Copyright © 2012, The AROS Development Team. All rights reserved.
7 $Id$
8 */
10 #include <libraries/mui.h>
12 struct ExpandString
14 char *string;
15 ULONG size;
18 struct Data
20 Object *logoGroup;
21 Object *logo;
22 Object *appInfoText;
23 Object *creditsText;
25 ULONG fallbackMode;
26 CONST_STRPTR logoFile;
27 CONST_APTR logoData;
28 CONST_STRPTR credits;
29 CONST_STRPTR build;
31 struct ExpandString parsedCredits;
32 struct ExpandString appInfo;
34 char progName[256];
35 char title[128];
38 struct Icon_Data
40 struct DiskObject *icon;
43 extern struct MUI_CustomClass *icon_mcc;
45 #endif /* _ABOUTBOX_PRIVATE_H_ */