iscGetVersion()

Purpose

iscGetVersion() gets the version number of the Sync Client C-API.

Syntax

isy_UINT32 iscGetVersion();

Function arguments

None.

Usage

iscGetVersion() is used to retrieve the version number of the Sync Client C-API. The version number returns as a 32-bit unsigned integer in the format of 0xmmnnrrxx, where mm, nn, and rr are the hexadecimal representation of major, minor, and modification version numbers, respectively. xx are reserved values.

Example:

   isy_UINT32  version;
          int verMajor, verMinor, verModi;
          version = iscGetVersion();
          verMajor = (int) (version >> 24);
          verMinor = (int) ((version >> 16) & 0x000000FF);
          verModi  = (int) ((version >> 8)  & 0x000000FF);        

Return codes

The Sync Client C-API version number.

Restrictions

None.

Related concepts

Related tasks

Related reference