[out] VISA interface manufacturer name.
GetManufacturerName
Gets the VISA interface manufacturer name.
Syntax
Section titled “Syntax”virtual HRESULT GetManufacturerName(CString& strName) abstract;Parameters
Section titled “Parameters”strName
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 GetManufacturerName function.
STDMETHODIMP Acme4321::IAcme4321_OnFinalInitialize(){ HRESULT hr = S_OK;
CString strManufacturerName; hr = io.SessionInfo.GetManufacturerName(strManufacturerName);
return hr;}