Commit 6ba3cc1c authored by Ricardo Filipe's avatar Ricardo Filipe Committed by Alexandre Julliard

setupapi: Add stubs for CM_Locate_DevNode_ExA/W.

parent 50e9ceb9
...@@ -130,8 +130,8 @@ ...@@ -130,8 +130,8 @@
@ stub CM_Is_Dock_Station_Present @ stub CM_Is_Dock_Station_Present
@ stdcall CM_Locate_DevNodeA(ptr str long) @ stdcall CM_Locate_DevNodeA(ptr str long)
@ stdcall CM_Locate_DevNodeW(ptr wstr long) @ stdcall CM_Locate_DevNodeW(ptr wstr long)
@ stub CM_Locate_DevNode_ExA @ stdcall CM_Locate_DevNode_ExA(ptr str long long)
@ stub CM_Locate_DevNode_ExW @ stdcall CM_Locate_DevNode_ExW(ptr wstr long long)
@ stub CM_Merge_Range_List @ stub CM_Merge_Range_List
@ stub CM_Modify_Res_Des @ stub CM_Modify_Res_Des
@ stub CM_Modify_Res_Des_Ex @ stub CM_Modify_Res_Des_Ex
......
...@@ -265,3 +265,23 @@ CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID, ...@@ -265,3 +265,23 @@ CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID,
return CR_FAILURE; 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;
}
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