home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / pcmail / main / clmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  1017 b   |  31 lines

  1. /* Map names to lower case for the MicroSoft 3.0 CL compiler/linker command */
  2.  
  3.  
  4.  
  5. #define  set_tty        SET_TTY     /* find current settings, and initialize */
  6.  
  7. #define  reset_tty      RESET_TTY   /* reset to settings that set_tty() found */
  8.  
  9. #define  get_msr        GET_MSR     /* get MSR byte from port. */
  10.  
  11. #define  init_comm      INIT_COMM   /* initialize the comm port interupts, */
  12.  
  13. #define  uninit_comm    UNINIT_COMM /* remove initialization, */
  14.  
  15. #define  set_xoff       SET_XOFF    /* enable/disable XON/XOFF, */
  16.  
  17. #define  get_xoff       GET_XOFF    /* read XON/XOFF state, */
  18.  
  19. #define  rcvd_xoff      RCVD_XOFF   /* returns true if XOFF rcvd, */
  20.  
  21. #define  sent_xoff      SENT_XOFF   /* true if XOFF sent, */
  22.  
  23. #define  inp_cnt        INP_CNT     /* returns count of rcv chars, */
  24.  
  25. #define  inp_char       INP_CHAR    /* get one char from buffer, */
  26.  
  27. #define  inp_flush      INP_FLUSH   /* flush input buffer, */
  28.  
  29. #define  outp_char      OUTP_CHAR   /* output a character, */
  30.  
  31.