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.

55 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. routing\netsh\ipx\protocols\common.h
  5. Abstract:
  6. Revision History:
  7. V Raman 1/5/99 Created
  8. --*/
  9. #ifndef _IPXMON_COMMON_H_
  10. #define _IPXMON_COMMON_H_
  11. #define IsHelpToken(pwszToken)\
  12. (MatchToken(pwszToken, TOKEN_HELP1) \
  13. || MatchToken(pwszToken, TOKEN_HELP2) \
  14. || MatchToken(pwszToken, TOKEN_HELP3))
  15. extern ULONG StartedCommonInitialization, CompletedCommonInitialization ;
  16. extern HANDLE g_hModule;
  17. extern HANDLE g_hMprConfig;
  18. extern HANDLE g_hMprAdmin;
  19. extern HANDLE g_hMIBServer;
  20. NS_CONTEXT_DUMP_FN IpxRipDump;
  21. NS_CONTEXT_DUMP_FN IpxSapDump;
  22. NS_CONTEXT_DUMP_FN IpxNbDump;
  23. extern ULONG g_ulIpxRipNumGroups;
  24. extern ULONG g_ulIpxSapNumGroups;
  25. extern ULONG g_ulIpxNbNumGroups;
  26. extern CMD_GROUP_ENTRY g_IpxRipCmdGroups[];
  27. extern CMD_GROUP_ENTRY g_IpxSapCmdGroups[];
  28. extern CMD_GROUP_ENTRY g_IpxNbCmdGroups[];
  29. DWORD WINAPI
  30. ConnectToRouter(
  31. IN LPCWSTR pwszRouter
  32. );
  33. #define DisplayIPXMessage DisplayMessageM
  34. #endif