home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / OTL-MC6.DMS / in.adf / incl.lha / INCLUDE / clib / rexxsyslib_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-29  |  1.2 KB  |  51 lines

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