29 Aug
2023
29 Aug
'23
5:19 p.m.
Jeffrey Smith (@whydoubt) commented about dlls/mmdevapi/devicetopology.c:
+ DT_AddRef, + DT_Release, + DT_GetConnectorCount, + DT_GetConnector, + DT_GetSubunitCount, + DT_GetSubunit, + DT_GetPartById, + DT_GetDeviceId, + DT_GetSignalPath, +}; + +HRESULT DeviceTopology_Create(IMMDevice *device, IDeviceTopology **ppv) +{ + struct device_topology *This; + + This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*This));
This = calloc(1, sizeof(*This));
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3554#note_43692