try to make sure compiler/include/mmakefile is always refreshed correctly.
[AROS.git] / rom / intuition / screennotifytask.h
bloba1d220fbaa8ffdb545bc07dd838526a5066895a5
1 #ifndef SCREENNOTIFYTASK_H
2 #define SCREENNOTIFYTASK_H
4 /*
5 Copyright 1995-2007, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #define SCREENNOTIFYTASK_NAME "<< Screennotify Handler >>"
10 #define SCREENNOTIFYTASK_STACKSIZE AROS_STACKSIZE
11 #define SCREENNOTIFYTASK_PRIORITY 0
13 /* Structure passed to the DefaultMenuHandler task when it's initialized */
15 BOOL InitDefaultScreennotifyHandler(struct IntuitionBase *IntuitionBase);
17 struct ScreennotifyTaskParams
19 struct IntuitionBase *intuitionBase;
20 struct Task *Caller;
21 struct MsgPort *ScreennotifyHandlerPort; /* filled in by ScreennotifyHandler task */
22 BOOL success;
25 #endif /* SCREENNOTIFYTASK_H */