Release 1.10
This commit is contained in:
17
fd/screennotify_lib.fd
Normal file
17
fd/screennotify_lib.fd
Normal file
@ -0,0 +1,17 @@
|
||||
##base _ScreenNotifyBase
|
||||
##bias 30
|
||||
*
|
||||
* fd/screennotify_lib.fd
|
||||
*
|
||||
* Function definitions for screennotify.library
|
||||
*
|
||||
* $VER: screennotify_lib.fd 1.0 (26.03.95)
|
||||
*
|
||||
##public
|
||||
AddCloseScreenClient(screen,port,pri)(a0,a1,d0)
|
||||
RemCloseScreenClient(handle)(a0)
|
||||
AddPubScreenClient(port,pri)(a0,d0)
|
||||
RemPubScreenClient(handle)(a0)
|
||||
AddWorkbenchClient(port,pri)(a0,d0)
|
||||
RemWorkbenchClient(handle)(a0)
|
||||
##end
|
24
fd/screennotify_lib.sfd
Normal file
24
fd/screennotify_lib.sfd
Normal file
@ -0,0 +1,24 @@
|
||||
* This SFD file was automatically generated by fd2sfd from
|
||||
* fd/screennotify_lib.fd and
|
||||
* include/clib/screennotify_protos.h.
|
||||
==base _ScreenNotifyBase
|
||||
==basetype struct Library *
|
||||
==libname screennotify.library
|
||||
==include <exec/types.h>
|
||||
==include <utility/tagitem.h>
|
||||
*
|
||||
* fd/screennotify_lib.fd
|
||||
*
|
||||
* Function definitions for screennotify.library
|
||||
*
|
||||
* $VER: screennotify_lib.fd 1.0 (26.03.95)
|
||||
*
|
||||
==bias 30
|
||||
==public
|
||||
APTR AddCloseScreenClient(struct Screen * screen, struct MsgPort * port, BYTE pri) (a0,a1,d0)
|
||||
BOOL RemCloseScreenClient(APTR handle) (a0)
|
||||
APTR AddPubScreenClient(struct MsgPort * port, BYTE pri) (a0,d0)
|
||||
BOOL RemPubScreenClient(APTR handle) (a0)
|
||||
APTR AddWorkbenchClient(struct MsgPort * port, BYTE pri) (a0,d0)
|
||||
BOOL RemWorkbenchClient(APTR handle) (a0)
|
||||
==end
|
24
fd/screennotify_protos.h
Normal file
24
fd/screennotify_protos.h
Normal file
@ -0,0 +1,24 @@
|
||||
#ifndef CLIB_SCREENNOTIFY_H
|
||||
#define CLIB_SCREENNOTIFY_H
|
||||
|
||||
/*
|
||||
* clib/screennotify_protos.h
|
||||
*
|
||||
* ANSI C prototypes for screennotify.library functions
|
||||
*
|
||||
* $VER: screennotify_protos.h 1.0 (26.03.95)
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EXEC_TYPES_H
|
||||
#include <exec/types.h>
|
||||
#endif
|
||||
|
||||
APTR AddCloseScreenClient(struct Screen *, struct MsgPort *, BYTE);
|
||||
APTR AddPubScreenClient(struct MsgPort *, BYTE);
|
||||
APTR AddWorkbenchClient(struct MsgPort *, BYTE);
|
||||
BOOL RemCloseScreenClient(APTR);
|
||||
BOOL RemPubScreenClient(APTR);
|
||||
BOOL RemWorkbenchClient(APTR);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user