home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / microcode / osio.h < prev    next >
C/C++ Source or Header  |  2000-12-05  |  3KB  |  80 lines

  1. /* -*-C-*-
  2.  
  3. $Id: osio.h,v 1.15 2000/12/05 21:23:47 cph Exp $
  4.  
  5. Copyright (c) 1990-2000 Massachusetts Institute of Technology
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or (at
  10. your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21.  
  22. #ifndef SCM_OSIO_H
  23. #define SCM_OSIO_H
  24.  
  25. #include "os.h"
  26.  
  27. /* Must match definition of `channel_type_names' in "prosio.c".  */
  28. enum channel_type
  29. {
  30.   channel_type_unknown,
  31.   channel_type_file,
  32.   channel_type_unix_pipe,
  33.   channel_type_unix_fifo,
  34.   channel_type_terminal,
  35.   channel_type_unix_pty_master,
  36.   channel_type_unix_stream_socket,
  37.   channel_type_tcp_stream_socket,
  38.   channel_type_tcp_server_socket,
  39.   channel_type_directory,
  40.   channel_type_unix_character_device,
  41.   channel_type_unix_block_device,
  42.   channel_type_os2_console,
  43.   channel_type_os2_unnamed_pipe,
  44.   channel_type_os2_named_pipe,
  45.   channel_type_win32_anonymous_pipe,
  46.   channel_type_win32_named_pipe
  47. };
  48.  
  49. extern size_t OS_channel_table_size;
  50. #define NO_CHANNEL OS_channel_table_size
  51. extern int EXFUN (OS_channel_open_p, (Tchannel channel));
  52. extern void EXFUN (OS_channel_close, (Tchannel channel));
  53. extern void EXFUN (OS_channel_close_noerror, (Tchannel channel));
  54. extern void EXFUN (OS_channel_close_on_abort, (Tchannel channel));
  55. extern enum channel_type EXFUN (OS_channel_type, (Tchannel channel));
  56. extern size_t EXFUN
  57.   (OS_channel_read_load_file, (Tchannel channel, PTR buffer, size_t nbytes));
  58. extern size_t EXFUN
  59.   (OS_channel_write_dump_file,
  60.    (Tchannel channel, CONST PTR buffer, size_t nbytes));
  61. extern long EXFUN
  62.   (OS_channel_read, (Tchannel channel, PTR buffer, size_t nbytes));
  63. extern long EXFUN
  64.   (OS_channel_write, (Tchannel channel, CONST PTR buffer, size_t nbytes));
  65. extern void EXFUN
  66.   (OS_channel_write_string, (Tchannel channel, CONST char * string));
  67. extern void EXFUN
  68.   (OS_make_pipe, (Tchannel * readerp, Tchannel * writerp));
  69. extern int EXFUN (OS_channel_nonblocking_p, (Tchannel channel));
  70. extern void EXFUN (OS_channel_nonblocking, (Tchannel channel));
  71. extern void EXFUN (OS_channel_blocking, (Tchannel channel));
  72.  
  73. #ifdef __WIN32__
  74. extern int OS_have_select_p;
  75. #else
  76. extern CONST int OS_have_select_p;
  77. #endif
  78.  
  79. #endif /* SCM_OSIO_H */
  80.