Cleanup: added CleanExit() and HandleCx() functions.
[AROS.git] / workbench / utilities / Presenter / main.c
blob55f12268fa45b26234a0b52c84b15fb66233bb07
1 /*
2 Copyright © 2003-2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #define MUIMASTER_YES_INLINE_STDARG
8 #include <proto/intuition.h>
9 #include <proto/exec.h>
10 #include <proto/muimaster.h>
11 #include <dos/dos.h>
12 #include <libraries/mui.h>
14 #include "presenter.h"
16 int main(void)
18 Object *application;
20 if ((application = PresenterObject, End) != NULL)
22 DoMethod(application, MUIM_Application_Execute);
23 MUI_DisposeObject(application);
26 return 0;