The win2003 DDK tells for the OID_TAPI_GET_ID:
IN DeviceClass = "ndis" // case insensitive
IN ulSelect = LINECALLSELECT_CALL
IN hdCall = ActiveCallHandle
OUT DeviceID = ConnectionWrapperID
Is this correct? I am asking this because the IsdnWan sample in the same DDK
responds to the OID with:
DeviceID.hDevice = (ULONG) (ULONG_PTR) (pBChannel->htCall);
Which seems to the be the call handle not the ConnectionWrapperID.
What is the proper way to treat the this OID request?