Release 1.10

This commit is contained in:
2021-01-12 23:02:29 +01:00
parent 324aeec752
commit 4431f67f75
69 changed files with 8410 additions and 1851 deletions

17
fd/screennotify_lib.fd Normal file
View 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
View 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
View 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