1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* $Id: AddVI.c,v 1.2 2012/10/29 08:03:14 budnik Exp $*/ /*=========================================================================== * DD SYSTEM CLIENT-SERVER * AddVI.c * v.1.0 * Executable to add new VI to server * List of changes: * 17 Jun 2007: V.1.0 ===========================================================================*/ #include <stdio.h> #include <string.h> #include <DD.h> main(int argc, char **argv) { int Err; Err = DD_AddDataSet(argv[1],argv[2],argv[3]); // printf("Err = %d\n",Err); return Err; } /*===========================================================================*/