GetGTXSWVer - GeoTAX_Premium - 7.7

GeoTAX Premium for Windows, UNIX/Linux, and z/OS

Product type
Software
Portfolio
Verify
Product family
Geo Addressing
Product
GeoTAX Premium
Version
7.7
Language
English
Product name
GeoTAX Premium
Title
GeoTAX Premium for Windows, UNIX/Linux, and z/OS
Copyright
2023
First publish date
1998
Last updated
2024-07-30
Published on
2024-07-30T03:53:01.467023

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);