fall back to a repository that does provide the version of acpica we use. (NicJA)
[AROS.git] / rom / intuition / screennotifytask.h
blobf0f451f85711ce290ff65ce67ad8f4b6a7940996
1 #ifndef SCREENNOTIFYTASK_H
2 #define SCREENNOTIFYTASK_H
4 /*
5 Copyright 1995-2018, 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 */