home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 024 / psi110g.zip / DEVPARAM.H < prev    next >
C/C++ Source or Header  |  1994-04-17  |  959b  |  43 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.   
  24. #define PARAM_CRCREQ 0x0c
  25. #define PARAM_POLL 0x0e
  26.   
  27. #define PARAM_MIN   14
  28. #define PARAM_MAXKEY    15
  29. #define PARAM_WAIT  16
  30. #define PARAM_DOWN  0x81
  31. #define PARAM_UP    0x82
  32. #define PARAM_BLIND 0x83    /* should be vertigo, can't tell down/up? */
  33. #define PARAM_RCV_MODE  0xfd
  34. #define PARAM_RETURN2   0xfe
  35. #define PARAM_RETURN    0xff
  36.   
  37. /* In devparam.c: */
  38. int devparam __ARGS((char *s));
  39. char *parmname __ARGS((int n));
  40.   
  41. #endif  /* _DEVPARAM_H */
  42.   
  43.