home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / uccs / root.14 / udk / usr / include / stropts.h < prev    next >
C/C++ Source or Header  |  1998-08-19  |  1KB  |  42 lines

  1. /*
  2.  * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved. 
  3.  *                                                                         
  4.  *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE               
  5.  *                   SANTA CRUZ OPERATION INC.                             
  6.  *                                                                         
  7.  *   The copyright notice above does not evidence any actual or intended   
  8.  *   publication of such source code.                                      
  9.  */
  10.  
  11. #ifndef _STROPTS_H
  12. #define _STROPTS_H
  13. #ident    "@(#)sgs-head:common/head/stropts.h    1.12"
  14.  
  15. /*
  16.  * Streams user options definitions.
  17.  */
  18.  
  19. #ifndef _SYS_STROPTS_H
  20. #include <sys/stropts.h>
  21. #endif
  22.  
  23. #if defined(__cplusplus)
  24. extern "C" {
  25. #endif
  26.  
  27. extern int getmsg(int, struct strbuf *, struct strbuf *, int *);
  28. extern int putmsg(int, const struct strbuf *, const struct strbuf *, int);
  29.  
  30. extern int getpmsg(int, struct strbuf *, struct strbuf *, int *, int *);
  31. extern int putpmsg(int, const struct strbuf *, const struct strbuf *, int, int);
  32.  
  33. extern int ioctl(int , int , ... );
  34. extern int fattach(int , const char *);
  35. extern int fdetach(const char *) ;
  36.  
  37. #if defined(__cplusplus)
  38. }
  39. #endif
  40.  
  41. #endif /*_STROPTS_H*/
  42.