MATES / Modular Automatic Test Equipment System API  2.5.0.0
mates_test_37.c
#include <stdio.h>
#include "mates.h"
int main(void)
{
int status;
char buf[260];
if (mates_dll_path(buf, sizeof(buf)) == UOS_STATUS_OK)
{
printf("Using DLL at '%s'\n", buf);
return (0);
}
else
{
return (1);
}
}