home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / clib / rexxsyslib_protos.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  1KB  |  39 lines

  1. #ifndef  CLIB_REXXSYSLIB_PROTOS_H
  2. #define  CLIB_REXXSYSLIB_PROTOS_H
  3. /*
  4. **    $VER: rexxsyslib_protos.h 36.3 (19.02.91)
  5. **    Includes Release 39.108
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1990-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12. /*--- functions in V33 or higher (distributed as Release 1.2) ---*/
  13. #ifndef  EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16. #ifndef  REXX_RXSLIB_H
  17. #include <rexx/rxslib.h>
  18. #endif
  19. #ifndef  REXX_REXXIO_H
  20. #include <rexx/rexxio.h>
  21. #endif
  22.  
  23. UBYTE *CreateArgstring( UBYTE *string, unsigned long length );
  24. void DeleteArgstring( UBYTE *argstring );
  25. ULONG LengthArgstring( UBYTE *argstring );
  26. struct RexxMsg *CreateRexxMsg( struct MsgPort *port, UBYTE *extension,
  27.     UBYTE *host );
  28. void DeleteRexxMsg( struct RexxMsg *packet );
  29. void ClearRexxMsg( struct RexxMsg *msgptr, unsigned long count );
  30. BOOL FillRexxMsg( struct RexxMsg *msgptr, unsigned long count,
  31.     unsigned long mask );
  32. BOOL IsRexxMsg( struct RexxMsg *msgptr );
  33.  
  34.  
  35. void LockRexxBase( unsigned long resource );
  36. void UnlockRexxBase( unsigned long resource );
  37.  
  38. #endif     /* CLIB_REXXSYSLIB_PROTOS_H */
  39.