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.

38 lines
642 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. //
  6. // File:
  7. //
  8. // Contents:
  9. //
  10. // Functions:
  11. //
  12. // History:
  13. //
  14. //----------------------------------------------------------------------------
  15. typedef struct _routerentry {
  16. WCHAR szProviderProgId[MAX_PATH];
  17. WCHAR szNamespaceProgId[MAX_PATH];
  18. WCHAR szAliases[MAX_PATH];
  19. LPCLSID pNamespaceClsid;
  20. struct _routerentry *pNext;
  21. } ROUTER_ENTRY, *PROUTER_ENTRY;
  22. PROUTER_ENTRY
  23. InitializeRouter(
  24. );
  25. void
  26. CleanupRouter(
  27. PROUTER_ENTRY pRouterHead
  28. );