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.

77 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. ntemgmt.h
  5. Abstract:
  6. Declartions for IP Network Table Entry management routines.
  7. Author:
  8. Mike Massa (mikemas) April 16, 1997
  9. Revision History:
  10. Who When What
  11. -------- -------- ----------------------------------------------
  12. mikemas 04-16-97 created
  13. Notes:
  14. --*/
  15. #ifndef _NTEMGMT_INCLUDED
  16. #define _NTEMGMT_INCLUDED
  17. #include <ntddip.h>
  18. //
  19. // Function Prototypes
  20. //
  21. NTSTATUS
  22. IpaLoad(
  23. VOID
  24. );
  25. NTSTATUS
  26. IpaInitialize(
  27. VOID
  28. );
  29. VOID
  30. IpaShutdown(
  31. VOID
  32. );
  33. NTSTATUS
  34. IpaAddNTE(
  35. IN PIRP Irp,
  36. IN PIO_STACK_LOCATION IrpSp
  37. );
  38. NTSTATUS
  39. IpaDeleteNTE(
  40. IN PIRP Irp,
  41. IN PIO_STACK_LOCATION IrpSp
  42. );
  43. NTSTATUS
  44. IpaSetNTEAddress(
  45. IN PIRP Irp,
  46. IN PIO_STACK_LOCATION IrpSp
  47. );
  48. BOOLEAN
  49. IpaIsAddressRegistered(
  50. ULONG Address
  51. );
  52. #endif // ndef _NTEMGMT_INCLUDED
  53.