![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Section contents
csocket.oxh
value% = BigEndianGet16%:(addr&)
Returns the big endian 16 bit value pointed to by addr&
.
addr& |
Address of a 16 bit (2 byte) value |
value% |
A 16 bit value |
If addr&
is not an address of an OPL variable
then an error is generated which should be trapped by an ONERR
handler.
value& = BigEndianGet32&:(addr&)
Returns the big endian 32 bit value pointed to by addr&
.
addr& |
Address of a 32 bit (4 byte) value |
value& |
A 32 bit value |
If addr&
is not an address of an OPL variable
then an error is generated which should be trapped by an ONERR
handler.
BigEndianPut16:(addr&,value%)
Writes the 16 bit value as a big endian value at the location
pointed to by addr&
.
addr& |
Address of a 16 bit (2 byte) value |
value% |
A 16 bit value |
If addr&
is not an address of an OPL variable
then an error is generated which should be trapped by an ONERR
handler.
BigEndianPut32:(addr&,value&)
Writes the 32 bit value as a big endian value at the location
pointed to by addr&
.
addr& |
Address of a 32 bit (4 byte) value |
value& |
A 32 bit value |
If addr&
is not an address of an OPL variable
then an error is generated which should be trapped by an ONERR
handler.
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |