version 1.15 | | version 1.16 |
---|
| | |
/* | | /* |
* static char *rcsid_plugins_c = | | * static char *rcsid_plugins_c = |
* "$Id: plugins.c,v 1.15 2002/02/22 09:47:39 gros Exp $"; | | * "$Id: plugins.c,v 1.16 2002/03/20 06:27:46 mwedel Exp $"; |
*/ | | */ |
| | |
/*****************************************************************************/ | | /*****************************************************************************/ |
| | |
RTNCmd.name = (char *)(RTNValue->Value[0]); | | RTNCmd.name = (char *)(RTNValue->Value[0]); |
RTNCmd.func = (CommFunc)(RTNValue->Value[1]); | | RTNCmd.func = (CommFunc)(RTNValue->Value[1]); |
RTNCmd.time = *(float *)(RTNValue->Value[2]); | | RTNCmd.time = *(float *)(RTNValue->Value[2]); |
printf("RTNCMD: name %s, time %d\n", RTNCmd.name, RTNCmd.time); | | printf("RTNCMD: name %s, time %f\n", RTNCmd.name, RTNCmd.time); |
return &RTNCmd; | | return &RTNCmd; |
}; | | }; |
}; | | }; |