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.

51 lines
809 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. nbnames.h
  5. Abstract:
  6. IPX Router Console Monitoring and Configuration tool.
  7. NetBIOS name configuration and monitoring. Header File
  8. Author:
  9. Vadim Eydelman 06/07/1996
  10. --*/
  11. #ifndef _IPXMON_NBNAMES_
  12. #define _IPXMON_NBNAMES_
  13. DWORD
  14. APIENTRY
  15. HelpNbName (
  16. IN int argc,
  17. IN WCHAR *argv[]
  18. );
  19. DWORD
  20. APIENTRY
  21. ShowNbName (
  22. IN int argc,
  23. IN WCHAR *argv[],
  24. IN HANDLE hFile
  25. );
  26. DWORD
  27. APIENTRY
  28. CreateNbName (
  29. IN int argc,
  30. IN WCHAR *argv[]
  31. );
  32. DWORD
  33. APIENTRY
  34. DeleteNbName (
  35. IN int argc,
  36. IN WCHAR *argv[]
  37. );
  38. #endif