[in] If true, the END signal is asserted with the last byte of the transfer. If false, no END signal is asserted.
SetSendEndEnabled
Specifies whether the IEEE 488.2 END signal should be asserted with the last byte of data transferred from the buffer to the device.
Syntax
Section titled “Syntax”virtual HRESULT SetSendEndEnabled(bool bEnabled) abstract;Parameters
Section titled “Parameters”bEnabled
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 SetSendEndEnabled function.
HRESULT Acme4321::OnFinalInitialize(){ HRESULT hr = S_OK;
hr = io.SetSendEndEnabled(true);
return hr;}