Specifies the byte order used to pass messages. Depending on this setting, either the byte with the highest or the lowest order is sent first, followed by the remaining bytes in the corresponding order.
IIOP.bdh
IiopSetByteOrder( in nByteOrder : number ): boolean;
true if successful
false otherwise
Parameter | Description |
---|---|
nByteOrder |
Byte order used to pass messages. Possible options are:
|
dcltrans transaction TWebInit begin // set byte order if IiopSetByteOrder(IIOP_BIG_ENDIAN)then writeln("byte order set to IIOP_BIG_ENDIAN"); end; end TWebInit;
byte order set to IIOP_BIG_ENDIAN