CalFreqRefGetInfo

Purpose

Returns the manufacturer and model of the Frequency Reference.

Syntax

CalFgenGetInfo (hHandle, psManufacturer, psModel, plStatus)

Parameters

Name
Type
Comments
hHandle
LONG
Handle for a Function Reference.
psManufacturer
PSTR
Returns a string with the manufacturer name.
psModel
PSTR
Returns a string with the model name.
plStatus
PLONG
Returned status: 0 on success, negative number on failure.

Comments

Example

The following example gets the Function Reference information:

 

LONG   lHandle, lStatus;

CHAR   szManufacturer[256];

CHAR   szModel[256];

 

CalFreqRefGetInfo (lHandle, szManufacturer, szModel, &lStatus);

Printf(“The Manufacturer is: %s and the Model is: %s”, szManufacturer, szModel);

 

See Also

CalFreqRefGetError