home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / NETWORK / SRC_0618.ZIP / DEVPARAM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-16  |  720 b   |  36 lines

  1. #ifndef    _DEVPARAM_H
  2. #define    _DEVPARAM_H
  3.  
  4. #ifndef    _GLOBAL_H
  5. #include "global.h"
  6. #endif
  7.  
  8. /* device parameter control */
  9. #define    PARAM_DATA    0
  10. #define    PARAM_TXDELAY    1
  11. #define    PARAM_PERSIST    2
  12. #define    PARAM_SLOTTIME    3
  13. #define    PARAM_TXTAIL    4
  14. #define    PARAM_FULLDUP    5
  15. #define    PARAM_HW    6
  16. #define    PARAM_MUTE    7
  17. #define    PARAM_DTR    8
  18. #define    PARAM_RTS    9
  19. #define    PARAM_SPEED    10
  20. #define    PARAM_ENDDELAY    11
  21. #define    PARAM_GROUP    12
  22. #define PARAM_IDLE    13
  23. #define    PARAM_MIN    14
  24. #define    PARAM_MAXKEY    15
  25. #define    PARAM_WAIT    16
  26. #define PARAM_DOWN    0x81
  27. #define PARAM_UP    0x82
  28. #define    PARAM_RETURN    0xff
  29.  
  30. /* In devparam.c: */
  31. int devparam __ARGS((char *s));
  32. char *parmname __ARGS((int n));
  33.  
  34. #endif    /* _DEVPARAM_H */
  35.  
  36.