MATES / Modular Automatic Test Equipment System API  2.5.0.0
mates_test_35.c
#include <stdio.h>
#include "mates.h"
int main(void)
{
char buf[100];
int success;
if (mates_dll_version(buf, sizeof(buf)) == UOS_STATUS_OK)
{
printf("DLL version: %s\n", buf);
return (0);
}
else
{
printf("Cannot get DLL version\n");
return (1);
}
}