[in] true indicates big endian byte ordering. false indicates little endian byte ordering.
GetDestinationBigEndian
Gets the byte order currently in use for high-level access operations, such as InXX and MoveInXX, when writing to the destination.
Syntax
Section titled “Syntax”virtual HRESULT GetDestinationBigEndian(bool* pbBigEndian) abstract;Parameters
Section titled “Parameters”pbBigEndian
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 GetDestinationBigEndian function.
STDMETHODIMP Acme4321::IAcme4321_Read(){ bool bBigEndian; hr = io.Memory.GetDestinationBigEndian(&bBigEndian);
return hr;}