Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
700 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. irdatdi.h
  5. Abstract:
  6. Library of routines that abstracts the tdi client interface to
  7. the IrDA stack. Used by rasirda.sys
  8. Author:
  9. mbert 9-97
  10. --*/
  11. #define IRDA_DEVICE_NAME TEXT("\\Device\\IrDA")
  12. #define IRDA_NAME TEXT("IrDA")
  13. #define TDI_ADDRESS_TYPE_IRDA 26 // wmz - the following belongs in tdi.h
  14. #define IRDA_DEV_SERVICE_LEN 26
  15. #define IRDA_MAX_DATA_SIZE 2044
  16. #define TTP_RECV_CREDITS 14
  17. typedef struct _TDI_ADDRESS_IRDA
  18. {
  19. UCHAR irdaDeviceID[4];
  20. CHAR irdaServiceName[IRDA_DEV_SERVICE_LEN];
  21. } TDI_ADDRESS_IRDA, *PTDI_ADDRESS_IRDA;