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

Windows编程

开发平台:

Visual C++

  1. /*************************************************************/
  2. /**                                                         **/
  3. /**                 Microsoft RPC Examples                  **/
  4. /**                 OSF DCE Interop Application             **/
  5. /**           Copyright(c) Microsoft Corp. 1993-1996        **/
  6. /**                                                         **/
  7. /*************************************************************/
  8. #include <stdio.h>
  9. #include "msg.h"    /* header file generated by M/IDL compiler */
  10. #if defined(__RPC_WIN32__) || defined(__RPC_DOS__)
  11. #include "dceport.h"
  12. #endif
  13. /*
  14.  * Print out client messages
  15.  */
  16. void ClientMessage(unsigned char *message)
  17. {
  18.     printf("%sn", message);
  19.     return;
  20. }
  21. /*
  22.  * The client can stop the server by calling this operation.
  23.  */
  24. void ShutdownServer()
  25. {
  26.     unsigned32 status;
  27.     rpc_mgmt_stop_server_listening(0, &status);
  28.     if (status)
  29.         {
  30.         printf("rpc_mgmt_stop_server_listening returns 0x%xn", status);
  31.         }
  32.     return;
  33. }