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.

64 lines
879 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. ipxifs.h
  5. Abstract:
  6. IPX Router Console Monitoring and Configuration tool.
  7. IPX Interface configuration and monitoring. Header File
  8. Author:
  9. Vadim Eydelman 06/07/1996
  10. --*/
  11. #ifndef _IPXMON_IPXIFS_
  12. #define _IPXMON_IPXIFS_
  13. DWORD
  14. APIENTRY
  15. HelpIpxIf(
  16. IN DWORD argc,
  17. IN LPCWSTR *argv
  18. );
  19. DWORD
  20. APIENTRY
  21. ShowIpxIf(
  22. IN DWORD argc,
  23. IN LPCWSTR *argv,
  24. IN BOOL bDump
  25. );
  26. DWORD
  27. APIENTRY
  28. SetIpxIf(
  29. IN DWORD argc,
  30. IN LPCWSTR *argv
  31. );
  32. DWORD
  33. APIENTRY
  34. InstallIpx(
  35. IN DWORD argc,
  36. IN LPCWSTR *argv
  37. );
  38. DWORD
  39. APIENTRY
  40. RemoveIpx(
  41. IN DWORD argc,
  42. IN LPCWSTR *argv
  43. );
  44. #endif