VideoMASTER_Version
- Updated2023-08-17
- 1 minute(s) read
VideoMASTER_Version
Description:
This function detects all licensed features and indicates software version information.
Syntax:
typedef struct {
LVBoolean Demo;
LVBoolean Composite;
LVBoolean SVideo;
LVBoolean Component;
LVBoolean MPEG;
LVBoolean OnLine;
LVBoolean Camera;
LVBoolean VBI;
LVBoolean Macrovision;
LVBoolean Instruware;
LVBoolean TestStand;
LVBoolean Digital;
} Features;
typedef struct {
LStrHandle VersionSupported;
LStrHandle Date;
} SoftWareVersion;
void VideoMASTER_Version(
ErrorCluster *errorIn,
ErrorCluster *errorOut,
Features *featuresLicensed,
SoftWareVersion *softwareVersion,
ShowAboutWindow =0);
Parameters:
refer to the corresponding LabVIEW API VideoMASTER Version for a detailed description of each parameter.
Example:
ErrorCluster errorIn;
ErrorCluster errorOut;
Features features;
SoftWareVersion softwareVersion;
zeroIt(errorIn);
zeroIt(errorOut);
zeroIt(softwareVersion);
VideoMASTER_Version(&errorIn, &errorOut, &features,
&softwareVersion);