added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / system / AboutAROS / main.c
blob32a7a8060f84fbac49a8f621c6c5b0e9bff43236
1 /*
2 Copyright © 2003-2004, 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/intuition.h>
12 #include <proto/exec.h>
13 #include <proto/muimaster.h>
14 #include <proto/utility.h>
15 #include <proto/dos.h>
17 #include <exec/types.h>
18 #include <dos/dos.h>
19 #include <libraries/mui.h>
21 #include <zune/aboutwindow.h>
23 #include <stdlib.h>
24 #include <stdio.h>
26 #include "locale.h"
27 #include "aboutaros.h"
29 int __nocommandline = 1;
30 int __forceerrorrequester = 1;
32 int main()
34 Object *application;
36 if ((application = AboutAROSObject, End) != NULL)
38 DoMethod(application, MUIM_Application_Execute);
39 MUI_DisposeObject(application);
42 return 0;