YIELDP.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /****************************************************************************
  2.                    Microsoft RPC Version 2.0
  3.            Copyright Microsoft Corp. 1992, 1993, 1994- 1996
  4.                        yield Example
  5.     FILE:       yieldp.c
  6.     PURPOSE:    Remote procedures that are linked with the server
  7.                 side of RPC distributed application
  8.     FUNCTIONS:  YieldProc() - sleeps the amount of time specified
  9.                               by client to server
  10.     COMMENTS:
  11. ****************************************************************************/
  12. #include <stdlib.h>
  13. #include <stdio.h>
  14. #include "yield.h"    // header file generated by MIDL compiler
  15. void YieldProc(short cSeconds)
  16. {
  17.     printf("Calling Sleep for %d seconds...n", cSeconds);
  18.     Sleep(cSeconds * 1000);
  19.     printf("Awake for next call...n");
  20. }
  21. void Shutdown(void)
  22. {
  23.     RPC_STATUS status;
  24.     printf("Calling RpcMgmtStopServerListeningn");
  25.     status = RpcMgmtStopServerListening(NULL);
  26.     printf("RpcMgmtStopServerListening returned: 0x%xn", status);
  27.     if (status) {
  28.         exit(status);
  29.     }
  30.     printf("Calling RpcServerUnregisterIfn");
  31.     status = RpcServerUnregisterIf(NULL, NULL, FALSE);
  32.     printf("RpcServerUnregisterIf returned 0x%xn", status);
  33.     if (status) {
  34.         exit(status);
  35.     }
  36. }
  37. /* end file yieldp.c */