home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / network / src_1218.zip / DEVPARAM.H < prev    next >
C/C++ Source or Header  |  1991-09-21  |  791b  |  37 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_BLIND    0x83    /* should be vertigo, can't tell down/up? */
  29. #define    PARAM_RETURN    0xff
  30.  
  31. /* In devparam.c: */
  32. int devparam __ARGS((char *s));
  33. char *parmname __ARGS((int n));
  34.  
  35. #endif    /* _DEVPARAM_H */
  36.  
  37.