home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / clib / rexxsyslib_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  1013 b   |  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 38.56
  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.  
  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 
  39.