GetGTXSWVer returns the version number and modification level of the GeoTAX software.
Syntax
szSWVersion[8+1] /* Software version */
long lFixedString; /* String termination flag */
Input/Output Structure
Elements |
Data Type |
Description |
---|---|---|
szSWVersion |
char[8+1] |
Matching software release and modification number |
Code Example
#include "GeoTAX.h"
char szSWVersion[8+1];
long lReturnCode;
long lFixedString;
.
.
.
lFixedString = 0;
if (lReturnCode = GetGTXSWVer (szSWVersion, lFixedString) == GTXAPI_SUCCESS)
printf ("\nSoftware version = %s \n", szSWVersion);