FACT++  1.0
int DimClient::setExitHandler ( const char *  serverName)
static

Definition at line 1182 of file diccpp.cxx.

References DimCmnd::send().

1183 {
1184  DimCmnd a;
1185  int ret, tag = 1;
1186  char *name = new char[(int)strlen(srvName) + 20];
1187  strcpy(name,(char *)srvName);
1188  strcat(name,"/SET_EXIT_HANDLER");
1189  ret = a.send(name, &tag, sizeof(int));
1190  delete[] name;
1191  return ret;
1192 }
Definition: dic.hxx:280
int send(char *name, void *data, int datasize)
Definition: diccpp.cxx:484

+ Here is the call graph for this function: