Commit 3dcac86e authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

cfgmgr32: Forward and stub CM_Connect_MachineA.

parent f197e8b1
......@@ -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
......
......@@ -52,6 +52,15 @@ DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
}
/***********************************************************************
* 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.@)
*/
CONFIGRET WINAPI CM_Connect_MachineW(PCWSTR name, PHMACHINE machine)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment