cfgmgr32: Forward and stub CM_Connect_MachineA.

oldstable
Andrew Nguyen 2008-12-29 11:43:00 -06:00 committed by Alexandre Julliard
parent f197e8b1ca
commit 3dcac86e53
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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.@)
*/