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.

57 lines
897 B

  1. /*******************************************************************/
  2. /* Copyright(c) 1992 Microsoft Corporation */
  3. /*******************************************************************/
  4. //***
  5. //
  6. // Filename: rasmanif.h
  7. //
  8. // Description: This module contains the definitions for
  9. // the ras manager interface module.
  10. //
  11. // Author: Stefan Solomon (stefans) June 1, 1992.
  12. //
  13. // Revision History:
  14. //
  15. //***
  16. #ifndef _RASMANIF_
  17. #define _RASMANIF_
  18. //*** maximum size of received frame requested ***
  19. #define MAX_FRAME_SIZE 1514
  20. //*** Ras Manager Interface Exported Prototypes ***
  21. DWORD
  22. RmInit(
  23. OUT BOOL * pfWANDeviceInstalled
  24. );
  25. DWORD
  26. RmReceiveFrame(
  27. IN PDEVICE_OBJECT pDeviceCB
  28. );
  29. DWORD
  30. RmListen(
  31. IN PDEVICE_OBJECT pDeviceCB
  32. );
  33. DWORD
  34. RmConnect(
  35. IN PDEVICE_OBJECT pDeviceCB,
  36. IN char *
  37. );
  38. DWORD
  39. RmDisconnect(
  40. IN PDEVICE_OBJECT pDevObj
  41. );
  42. #endif