cfgmgr32: Forward and stub CM_Connect_MachineA.
This commit is contained in:
parent
f197e8b1ca
commit
3dcac86e53
|
@ -7,7 +7,7 @@
|
|||
@ stub CM_Add_Range
|
||||
@ stub CM_Add_Res_Des
|
||||
@ stub CM_Add_Res_Des_Ex
|
||||
@ stub CM_Connect_MachineA
|
||||
@ stdcall CM_Connect_MachineA(str ptr) setupapi.CM_Connect_MachineA
|
||||
@ stdcall CM_Connect_MachineW(wstr ptr) setupapi.CM_Connect_MachineW
|
||||
@ stub CM_Create_DevNodeA
|
||||
@ stub CM_Create_DevNodeW
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
@ stub CM_Add_Range
|
||||
@ stub CM_Add_Res_Des
|
||||
@ stub CM_Add_Res_Des_Ex
|
||||
@ stub CM_Connect_MachineA
|
||||
@ stdcall CM_Connect_MachineA(str ptr)
|
||||
@ stdcall CM_Connect_MachineW(wstr ptr)
|
||||
@ stub CM_Create_DevNodeA
|
||||
@ stub CM_Create_DevNodeW
|
||||
|
|
|
@ -51,6 +51,15 @@ DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
|
|||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Connect_MachineA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Connect_MachineA(PCSTR name, PHMACHINE machine)
|
||||
{
|
||||
FIXME("(%s %p) stub\n", name, machine);
|
||||
return CR_ACCESS_DENIED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Connect_MachineW (SETUPAPI.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue