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.

62 lines
910 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. nbtmgmt.h
  5. Abstract:
  6. Declarations for NBT interface management routines.
  7. Author:
  8. David Dion (daviddio) December 14, 1999
  9. Revision History:
  10. Who When What
  11. -------- -------- ----------------------------------------------
  12. daviddio 12-14-99 created
  13. Notes:
  14. --*/
  15. #ifndef _NBTMGMT_INCLUDED
  16. #define _NBTMGMT_INCLUDED
  17. #include <nbtioctl.h>
  18. //
  19. // Function Prototypes
  20. //
  21. NTSTATUS
  22. NbtIfLoad(
  23. VOID
  24. );
  25. VOID
  26. NbtIfShutdown(
  27. VOID
  28. );
  29. NTSTATUS
  30. NbtAddIf(
  31. IN PNETBT_ADD_DEL_IF Request,
  32. IN ULONG RequestSize,
  33. OUT PNETBT_ADD_DEL_IF Response,
  34. IN OUT PULONG ResponseSize
  35. );
  36. NTSTATUS
  37. NbtDeleteIf(
  38. IN PNETBT_ADD_DEL_IF Request,
  39. IN ULONG RequestSize
  40. );
  41. #endif // ndef _NBTMGMT_INCLUDED