mirror of https://github.com/tongzx/nt5src
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
38 lines
642 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|
//
|
|
// File:
|
|
//
|
|
// Contents:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History:
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _routerentry {
|
|
WCHAR szProviderProgId[MAX_PATH];
|
|
WCHAR szNamespaceProgId[MAX_PATH];
|
|
WCHAR szAliases[MAX_PATH];
|
|
LPCLSID pNamespaceClsid;
|
|
struct _routerentry *pNext;
|
|
} ROUTER_ENTRY, *PROUTER_ENTRY;
|
|
|
|
|
|
|
|
PROUTER_ENTRY
|
|
InitializeRouter(
|
|
);
|
|
|
|
void
|
|
CleanupRouter(
|
|
PROUTER_ENTRY pRouterHead
|
|
);
|
|
|