setupapi: Add stubs for CM_Locate_DevNode_ExA/W.

This commit is contained in:
Ricardo Filipe 2009-05-07 13:02:37 +01:00 committed by Alexandre Julliard
parent 50e9ceb9e4
commit 6ba3cc1c2e
2 changed files with 22 additions and 2 deletions

View file

@ -130,8 +130,8 @@
@ stub CM_Is_Dock_Station_Present
@ stdcall CM_Locate_DevNodeA(ptr str long)
@ stdcall CM_Locate_DevNodeW(ptr wstr long)
@ stub CM_Locate_DevNode_ExA
@ stub CM_Locate_DevNode_ExW
@ stdcall CM_Locate_DevNode_ExA(ptr str long long)
@ stdcall CM_Locate_DevNode_ExW(ptr wstr long long)
@ stub CM_Merge_Range_List
@ stub CM_Modify_Res_Des
@ stub CM_Modify_Res_Des_Ex

View file

@ -265,3 +265,23 @@ CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID,
return CR_FAILURE;
}
/***********************************************************************
* CM_Locate_DevNode_ExA (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Locate_DevNode_ExA(PDEVINST pdnDevInst, DEVINSTID_A pDeviceID, ULONG ulFlags, HMACHINE hMachine)
{
FIXME("%p %s 0x%08x %p: stub\n", pdnDevInst, debugstr_a(pDeviceID), ulFlags, hMachine);
return CR_FAILURE;
}
/***********************************************************************
* CM_Locate_DevNode_ExW (SETUPAPI.@)
*/
CONFIGRET WINAPI CM_Locate_DevNode_ExW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID, ULONG ulFlags, HMACHINE hMachine)
{
FIXME("%p %s 0x%08x %p: stub\n", pdnDevInst, debugstr_w(pDeviceID), ulFlags, hMachine);
return CR_FAILURE;
}