1 #if !defined(CLIB_SCREENNOTIFY_PROTOS_H) && !defined(CLIB_SCREENNOTIFY_H) 2 #define CLIB_SCREENNOTIFY_PROTOS_H 3 #define CLIB_SCREENNOTIFY_H 4 5 /* 6 screennotify.library C prototypes 7 8 Copyright © 2002 The MorphOS Development Team, All Rights Reserved. 9 */ 10 11 #ifndef EXEC_TYPES_H 12 # include <exec/types.h> 13 #endif 14 15 #ifndef EXEC_PORTS_H 16 # include <exec/ports.h> 17 #endif 18 19 #ifndef INTUITION_SCREENS_H 20 # include <intuition/screens.h> 21 #endif 22 23 24 #ifdef __cplusplus 25 extern "C" { 26 #endif /* __cplusplus */ 27 28 APTR AddCloseScreenClient(struct Screen *, struct MsgPort *, BYTE); 29 APTR AddPubScreenClient(struct MsgPort *, BYTE); 30 APTR AddWorkbenchClient(struct MsgPort *, BYTE); 31 BOOL RemCloseScreenClient(APTR); 32 BOOL RemPubScreenClient(APTR); 33 BOOL RemWorkbenchClient(APTR); 34 35 36 #ifdef __cplusplus 37 } 38 #endif /* __cplusplus */ 39 40 41 #endif /* CLIB_SCREENNOTIFY_PROTOS_H */