20xx -> 2012
[AROS.git] / workbench / system / AboutAROS / main.c
blobaacc92bcf25284a8aeec15cae8d67885e761b570
1 /*
2 Copyright © 2003-2011, The AROS Development Team. All rights reserved.
3 This file is part of the About program, which is distributed under
4 the terms of version 2 of the GNU General Public License.
6 $Id$
7 */
9 #define MUIMASTER_YES_INLINE_STDARG
11 #include <proto/alib.h>
12 #include <proto/intuition.h>
13 #include <proto/exec.h>
14 #include <proto/muimaster.h>
15 #include <proto/utility.h>
16 #include <proto/dos.h>
18 #include <exec/types.h>
19 #include <dos/dos.h>
20 #include <libraries/mui.h>
22 #include <zune/aboutwindow.h>
24 #include <stdlib.h>
25 #include <stdio.h>
27 #include "locale.h"
28 #include "aboutaros.h"
30 int __nocommandline = 1;
31 int __forceerrorrequester = 1;
33 int main()
35 Object *application;
37 if ((application = (Object *)(AboutAROSObject, End)) != NULL)
39 DoMethod(application, MUIM_Application_Execute);
40 MUI_DisposeObject(application);
43 return 0;