[out] VISA interface manufacturer ID.
GetManufacturerId
Gets the VISA interface manufacturer ID.
Syntax
Section titled “Syntax”virtual HRESULT GetManufacturerId(UINT16* pusId) abstract;Parameters
Section titled “Parameters”pusId
Return value
Section titled “Return value”Returns S_OK if successful, otherwise a failure HRESULT.
Example
Section titled “Example”The following example demonstrates use of the GetManufacturerId function.
STDMETHODIMP Acme4321::IAcme4321_OnFinalInitialize(){ HRESULT hr = S_OK;
USHORT usManufacturerId; hr = io.SessionInfo.GetManufacturerId(&usManufacturerId);
return hr;}