Returns the manufacturer and model of the Power Meter.
CalPwrMeterGetInfo (psManufacturer, psModel, plStatus)
Name |
Type |
Comments |
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. |
The following example gets the Matrix information:
LONG lStatus;
CHAR szManufacturer[256];
CHAR szModel[256];
CalPwrMeterGetInfo (szManufacturer, szModel, &lStatus);
Printf(“The Manufacturer is: %s and the Model is: %s”, szManufacturer, szModel);