![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Section contents
csocket.oxh
value% = LittleEndianGet16%:(addr&)
Returns the little 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& = LittleEndianGet32&:(addr&)
Returns the little 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.
LittleEndianPut16:(addr&,value%)
Writes the 16 bit value as a little 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.
LittleEndianPut32:(addr&,value&)
Writes the 32 bit value as a little 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.
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |