mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[UMPNPMGR]
- Start using XP- and Vista-compatible pipe names for the RPC endpoint. Kick out the ROS-specific \pipe\umpnpmgr one. - Use only the Vista pipe name for now, using the XP one makes device installation fail.. - Use the correct PNP interface UUID [SETUPAPI] - Bind to the PNP service using the Vista-compatible pipe. svn path=/trunk/; revision=50242
This commit is contained in:
parent
0d6bdbec51
commit
f9a750c9c0
3 changed files with 23 additions and 6 deletions
|
@ -94,20 +94,37 @@ static DWORD WINAPI
|
|||
RpcServerThread(LPVOID lpParameter)
|
||||
{
|
||||
RPC_STATUS Status;
|
||||
BOOLEAN RegisteredProtSeq = FALSE;
|
||||
|
||||
UNREFERENCED_PARAMETER(lpParameter);
|
||||
|
||||
DPRINT("RpcServerThread() called\n");
|
||||
|
||||
#if 0
|
||||
/* XP-compatible protocol sequence/endpoint */
|
||||
Status = RpcServerUseProtseqEpW(L"ncacn_np",
|
||||
20,
|
||||
L"\\pipe\\umpnpmgr",
|
||||
L"\\pipe\\ntsvcs",
|
||||
NULL); // Security descriptor
|
||||
if (Status != RPC_S_OK)
|
||||
{
|
||||
if (Status == RPC_S_OK)
|
||||
RegisteredProtSeq = TRUE;
|
||||
else
|
||||
DPRINT1("RpcServerUseProtseqEpW() failed (Status %lx)\n", Status);
|
||||
#endif
|
||||
|
||||
/* Vista-compatible protocol sequence/endpoint */
|
||||
Status = RpcServerUseProtseqEpW(L"ncacn_np",
|
||||
20,
|
||||
L"\\pipe\\plugplay",
|
||||
NULL); // Security descriptor
|
||||
if (Status == RPC_S_OK)
|
||||
RegisteredProtSeq = TRUE;
|
||||
else
|
||||
DPRINT1("RpcServerUseProtseqEpW() failed (Status %lx)\n", Status);
|
||||
|
||||
/* Make sure there's a usable endpoint */
|
||||
if (RegisteredProtSeq == FALSE)
|
||||
return 0;
|
||||
}
|
||||
|
||||
Status = RpcServerRegisterIf(pnp_v1_0_s_ifspec,
|
||||
NULL,
|
||||
|
|
|
@ -36,7 +36,7 @@ PnpBindRpc(LPCWSTR pszMachine,
|
|||
Status = RpcStringBindingComposeW(NULL,
|
||||
L"ncacn_np",
|
||||
(LPWSTR)pszMachine,
|
||||
L"\\pipe\\umpnpmgr",
|
||||
L"\\pipe\\plugplay",
|
||||
NULL,
|
||||
&pszStringBinding);
|
||||
if (Status != RPC_S_OK)
|
||||
|
|
|
@ -250,7 +250,7 @@ typedef struct _DEVPROPKEY {
|
|||
} DEVPROPKEY;
|
||||
|
||||
[
|
||||
uuid (809F4e40-A03D-11CE-8F69-08003E30051B),
|
||||
uuid (8D9F4E40-A03D-11CE-8F69-08003E30051B),
|
||||
version(1.0),
|
||||
pointer_default(unique)
|
||||
#ifndef __midl
|
||||
|
|
Loading…
Reference in a new issue