mytest_clnt.c
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:0k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  * Please do not edit this file.
  3.  * It was generated using rpcgen.
  4.  */
  5. #include <memory.h> /* for memset */
  6. #include "mytest.h"
  7. /* Default timeout can be changed using clnt_control() */
  8. static struct timeval TIMEOUT = { 25, 0 };
  9. int *
  10. ct_p_2(void *argp, CLIENT *clnt)
  11. {
  12. static int clnt_res;
  13. memset((char *)&clnt_res, 0, sizeof(clnt_res));
  14. if (clnt_call(clnt, CT_P, xdr_void, argp, xdr_int, &clnt_res, TIMEOUT) != RPC_SUCCESS) {
  15. return (NULL);
  16. }
  17. return (&clnt_res);
  18. }