SDK Home Glossary Index Left Right Up

General OPX Routines


Section contents


Overview

Defined in

ccomms.oxh


CommsOPXVersion

Usage

result% = CommsOPXVersion%:()

Description

This routine returns the version number of the CComms OPX.

Return Value
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.
Example
LOCAL version% 

version% = CommsOPXVersion%:
PRINT "Major version number is "; version% / 256
PRINT "Minor version number is "; version% AND 255

  SDK Home Glossary Index Left Right Up