mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:25:55 +00:00
[SETUPAPI]
Implement CM_Get_Device_Interface_List[_Ex]A/W and CM_Get_Device_Interface_List_Size[_Ex]A/W. svn path=/trunk/; revision=50975
This commit is contained in:
parent
545fca44dc
commit
55f58f967c
3 changed files with 264 additions and 25 deletions
|
@ -2387,6 +2387,264 @@ CONFIGRET WINAPI CM_Get_Device_Interface_Alias_ExW(
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_ListA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_ListA(
|
||||
LPGUID InterfaceClassGuid, DEVINSTID_A pDeviceID, PCHAR Buffer,
|
||||
ULONG BufferLen, ULONG ulFlags)
|
||||
{
|
||||
TRACE("%s %s %p %lu 0x%08lx\n", debugstr_guid(InterfaceClassGuid),
|
||||
pDeviceID, Buffer, BufferLen, ulFlags);
|
||||
|
||||
return CM_Get_Device_Interface_List_ExA(InterfaceClassGuid, pDeviceID,
|
||||
Buffer, BufferLen, ulFlags, NULL);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_ListW (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_ListW(
|
||||
LPGUID InterfaceClassGuid, DEVINSTID_W pDeviceID, PWCHAR Buffer,
|
||||
ULONG BufferLen, ULONG ulFlags)
|
||||
{
|
||||
TRACE("%s %s %p %lu 0x%08lx\n", debugstr_guid(InterfaceClassGuid),
|
||||
debugstr_w(pDeviceID), Buffer, BufferLen, ulFlags);
|
||||
|
||||
return CM_Get_Device_Interface_List_ExW(InterfaceClassGuid, pDeviceID,
|
||||
Buffer, BufferLen, ulFlags, NULL);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_ExA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_ExA(
|
||||
LPGUID InterfaceClassGuid, DEVINSTID_A pDeviceID, PCHAR Buffer,
|
||||
ULONG BufferLen, ULONG ulFlags, HMACHINE hMachine)
|
||||
{
|
||||
DEVINSTID_W pDeviceIdW = NULL;
|
||||
PWCHAR BufferW = NULL;
|
||||
CONFIGRET ret = CR_SUCCESS;
|
||||
|
||||
TRACE("%s %s %p %lu 0x%08lx %p\n", debugstr_guid(InterfaceClassGuid),
|
||||
pDeviceID, Buffer, BufferLen, ulFlags, hMachine);
|
||||
|
||||
if (Buffer == NULL ||
|
||||
BufferLen == 0)
|
||||
return CR_INVALID_POINTER;
|
||||
|
||||
if (pDeviceID != NULL)
|
||||
{
|
||||
if (!pSetupCaptureAndConvertAnsiArg(pDeviceID, &pDeviceIdW))
|
||||
return CR_INVALID_DEVICE_ID;
|
||||
}
|
||||
|
||||
BufferW = MyMalloc(BufferLen * sizeof(WCHAR));
|
||||
if (BufferW == NULL)
|
||||
{
|
||||
ret = CR_OUT_OF_MEMORY;
|
||||
goto Done;
|
||||
}
|
||||
|
||||
ret = CM_Get_Device_Interface_List_ExW(InterfaceClassGuid, pDeviceIdW,
|
||||
BufferW, BufferLen, ulFlags,
|
||||
hMachine);
|
||||
if (ret != CR_SUCCESS)
|
||||
goto Done;
|
||||
|
||||
if (WideCharToMultiByte(CP_ACP,
|
||||
0,
|
||||
BufferW,
|
||||
lstrlenW(BufferW) + 1,
|
||||
Buffer,
|
||||
BufferLen,
|
||||
NULL,
|
||||
NULL) == 0)
|
||||
ret = CR_FAILURE;
|
||||
|
||||
Done:
|
||||
if (BufferW != NULL)
|
||||
MyFree(BufferW);
|
||||
|
||||
if (pDeviceIdW != NULL)
|
||||
MyFree(pDeviceIdW);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_ExW (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_ExW(
|
||||
LPGUID InterfaceClassGuid, DEVINSTID_W pDeviceID, PWCHAR Buffer,
|
||||
ULONG BufferLen, ULONG ulFlags, HMACHINE hMachine)
|
||||
{
|
||||
RPC_BINDING_HANDLE BindingHandle = NULL;
|
||||
PNP_RPC_BUFFER_SIZE BufferSize = 0;
|
||||
CONFIGRET ret = CR_SUCCESS;
|
||||
|
||||
TRACE("%s %s %p %lu 0x%08lx %p\n", debugstr_guid(InterfaceClassGuid),
|
||||
debugstr_w(pDeviceID), Buffer, BufferLen, ulFlags, hMachine);
|
||||
|
||||
if (Buffer == NULL ||
|
||||
BufferLen == 0)
|
||||
return CR_INVALID_POINTER;
|
||||
|
||||
if (ulFlags & ~CM_GET_DEVICE_INTERFACE_LIST_BITS)
|
||||
return CR_INVALID_FLAG;
|
||||
|
||||
if (hMachine != NULL)
|
||||
{
|
||||
BindingHandle = ((PMACHINE_INFO)hMachine)->BindingHandle;
|
||||
if (BindingHandle == NULL)
|
||||
return CR_FAILURE;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!PnpGetLocalHandles(&BindingHandle, NULL))
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
*Buffer = 0;
|
||||
BufferSize = BufferLen;
|
||||
|
||||
RpcTryExcept
|
||||
{
|
||||
ret = PNP_GetInterfaceDeviceList(BindingHandle,
|
||||
InterfaceClassGuid,
|
||||
pDeviceID,
|
||||
(LPBYTE)Buffer,
|
||||
&BufferSize,
|
||||
ulFlags);
|
||||
}
|
||||
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
||||
{
|
||||
ret = RpcStatusToCmStatus(RpcExceptionCode());
|
||||
}
|
||||
RpcEndExcept;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_SizeA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_SizeA(
|
||||
PULONG pulLen, LPGUID InterfaceClassGuid, DEVINSTID_A pDeviceId,
|
||||
ULONG ulFlags)
|
||||
{
|
||||
TRACE("%p %p %s 0x%08lx\n", pulLen, InterfaceClassGuid,
|
||||
pDeviceId, ulFlags);
|
||||
|
||||
return CM_Get_Device_Interface_List_Size_ExA(pulLen, InterfaceClassGuid,
|
||||
pDeviceId, ulFlags, NULL);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_SizeW (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_SizeW(
|
||||
PULONG pulLen, LPGUID InterfaceClassGuid, DEVINSTID_W pDeviceId,
|
||||
ULONG ulFlags)
|
||||
{
|
||||
TRACE("%p %p %s 0x%08lx\n", pulLen, InterfaceClassGuid,
|
||||
debugstr_w(pDeviceId), ulFlags);
|
||||
|
||||
return CM_Get_Device_Interface_List_Size_ExW(pulLen, InterfaceClassGuid,
|
||||
pDeviceId, ulFlags, NULL);
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_Size_ExA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExA(
|
||||
PULONG pulLen, LPGUID InterfaceClassGuid, DEVINSTID_A pDeviceId,
|
||||
ULONG ulFlags, HMACHINE hMachine)
|
||||
{
|
||||
DEVINSTID_W pDeviceIdW = NULL;
|
||||
CONFIGRET ret = CR_SUCCESS;
|
||||
|
||||
TRACE("%p %p %s 0x%08lx %p\n", pulLen, InterfaceClassGuid,
|
||||
pDeviceId, ulFlags, hMachine);
|
||||
|
||||
if (pulLen == NULL)
|
||||
return CR_INVALID_POINTER;
|
||||
|
||||
if (pDeviceId != NULL)
|
||||
{
|
||||
if (!pSetupCaptureAndConvertAnsiArg(pDeviceId, &pDeviceIdW))
|
||||
return CR_INVALID_DEVICE_ID;
|
||||
}
|
||||
|
||||
*pulLen = 0;
|
||||
|
||||
ret = CM_Get_Device_Interface_List_Size_ExW(pulLen, InterfaceClassGuid,
|
||||
pDeviceIdW, ulFlags, hMachine);
|
||||
|
||||
if (pDeviceIdW != NULL)
|
||||
MyFree(pDeviceIdW);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_Size_ExW (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExW(
|
||||
PULONG pulLen, LPGUID InterfaceClassGuid, DEVINSTID_W pDeviceId,
|
||||
ULONG ulFlags, HMACHINE hMachine)
|
||||
{
|
||||
RPC_BINDING_HANDLE BindingHandle = NULL;
|
||||
CONFIGRET ret = CR_SUCCESS;
|
||||
|
||||
TRACE("%p %p %s 0x%08lx %p\n", pulLen, InterfaceClassGuid,
|
||||
debugstr_w(pDeviceId), ulFlags, hMachine);
|
||||
|
||||
if (pulLen == NULL)
|
||||
return CR_INVALID_POINTER;
|
||||
|
||||
if (ulFlags & ~CM_GET_DEVICE_INTERFACE_LIST_BITS)
|
||||
return CR_INVALID_FLAG;
|
||||
|
||||
if (hMachine != NULL)
|
||||
{
|
||||
BindingHandle = ((PMACHINE_INFO)hMachine)->BindingHandle;
|
||||
if (BindingHandle == NULL)
|
||||
return CR_FAILURE;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!PnpGetLocalHandles(&BindingHandle, NULL))
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
*pulLen = 0;
|
||||
|
||||
RpcTryExcept
|
||||
{
|
||||
ret = PNP_GetInterfaceDeviceListSize(BindingHandle,
|
||||
pulLen,
|
||||
InterfaceClassGuid,
|
||||
pDeviceId,
|
||||
ulFlags);
|
||||
}
|
||||
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
||||
{
|
||||
ret = RpcStatusToCmStatus(RpcExceptionCode());
|
||||
}
|
||||
RpcEndExcept;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_First_Log_Conf [SETUPAPI.@]
|
||||
*/
|
||||
|
|
|
@ -94,12 +94,12 @@
|
|||
@ stdcall CM_Get_Device_Interface_AliasW(wstr ptr wstr ptr long)
|
||||
@ stdcall CM_Get_Device_Interface_Alias_ExA(str ptr str ptr long long)
|
||||
@ stdcall CM_Get_Device_Interface_Alias_ExW(wstr ptr wstr ptr long long)
|
||||
@ stub CM_Get_Device_Interface_ListA
|
||||
@ stub CM_Get_Device_Interface_ListW
|
||||
@ stub CM_Get_Device_Interface_List_ExA
|
||||
@ stub CM_Get_Device_Interface_List_ExW
|
||||
@ stub CM_Get_Device_Interface_List_SizeA
|
||||
@ stub CM_Get_Device_Interface_List_SizeW
|
||||
@ stdcall CM_Get_Device_Interface_ListA(ptr str str long long)
|
||||
@ stdcall CM_Get_Device_Interface_ListW(ptr wstr wstr long long)
|
||||
@ stdcall CM_Get_Device_Interface_List_ExA(ptr str str long long ptr)
|
||||
@ stdcall CM_Get_Device_Interface_List_ExW(ptr wstr wstr long long ptr)
|
||||
@ stdcall CM_Get_Device_Interface_List_SizeA(ptr ptr str long)
|
||||
@ stdcall CM_Get_Device_Interface_List_SizeW(ptr ptr wstr long)
|
||||
@ stdcall CM_Get_Device_Interface_List_Size_ExA(ptr ptr str long ptr)
|
||||
@ stdcall CM_Get_Device_Interface_List_Size_ExW(ptr ptr wstr long ptr)
|
||||
@ stdcall CM_Get_First_Log_Conf(ptr long long)
|
||||
|
|
|
@ -187,25 +187,6 @@ CMP_UnregisterNotification(IN HDEVNOTIFY handle)
|
|||
return CR_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_Size_ExA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExA(PULONG len, LPGUID class, DEVINSTID_A id,
|
||||
ULONG flags, HMACHINE machine)
|
||||
{
|
||||
FIXME("%p %p %s 0x%08x %p: stub\n", len, class, debugstr_a(id), flags, machine);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_Size_ExW (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExW(PULONG len, LPGUID class, DEVINSTID_W id,
|
||||
ULONG flags, HMACHINE machine)
|
||||
{
|
||||
FIXME("%p %p %s 0x%08x %p: stub\n", len, class, debugstr_w(id), flags, machine);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
WINSETUPAPI BOOL WINAPI SetupDiGetDeviceInterfaceAlias(IN HDEVINFO DeviceInfoSet, IN PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData, IN CONST GUID *AliasInterfaceClassGuid, OUT PSP_DEVICE_INTERFACE_DATA AliasDeviceInterfaceData)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue