Click or drag to resize

GetSendEndEnabled

Indicates whether the IEEE 488.2 END signal will be asserted with the last byte of data transferred from the buffer to the device.

virtual HRESULT GetSendEndEnabled(bool* pbEnabled) abstract;
Parameters
pbEnabled

[out] If true, the END signal is asserted with the last byte of the transfer. If false, no END signal is asserted.

Return Value

Returns S_OK if successful, otherwise a failure HRESULT.

Example

The following example demonstrates use of the GetSendEndEnabled function.

C++
// CoAcme4321.cpp
HRESULT Acme4321::OnFinalInitialize()
{
  HRESULT hr = S_OK;

  bool bSendEND;
  hr = io.GetSendEndEnabled(&bSendEND);

  return hr;
}
See Also

Download a complete CHM version of this documentation here.