Section contents
ccomms.oxh
result% = CommsOPXVersion%:()
This routine returns the version number of the CComms OPX.
result% |
The version number of the OPX. The major version number can be obtained by dividing the value by 256. The minor version number can be obtained by ANDing the value with 255. |
LOCAL version% version% = CommsOPXVersion%: PRINT "Major version number is "; version% / 256 PRINT "Minor version number is "; version% AND 255