Source code of Windows XP (NT5)
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.

45 lines
1.0 KiB

  1. /*****************************************************************************
  2. *
  3. * Copyright (c) 1996-1999 Microsoft Corporation
  4. *
  5. * @doc
  6. * @module esi.h | IrSIR NDIS Miniport Driver
  7. * @comm
  8. *
  9. *-----------------------------------------------------------------------------
  10. *
  11. * Author: Scott Holden (sholden)
  12. *
  13. * Date: 9/30/1996 (created)
  14. *
  15. * Contents: ESI 9680 JetEye dongle specific prototypes.
  16. *
  17. *****************************************************************************/
  18. #include "dongle.h"
  19. #ifndef ESI_H
  20. #define ESI_H
  21. NDIS_STATUS ESI_QueryCaps(
  22. PDONGLE_CAPABILITIES pDongleCaps
  23. );
  24. NDIS_STATUS ESI_Init(
  25. PDEVICE_OBJECT pSerialDevObj
  26. );
  27. void ESI_Deinit(
  28. PDEVICE_OBJECT pSerialDevObj
  29. );
  30. NDIS_STATUS ESI_SetSpeed(
  31. PDEVICE_OBJECT pSerialDevObj,
  32. UINT bitsPerSec,
  33. UINT currentSpeed
  34. );
  35. #endif ESI_H