MANAGER.C
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- /*************************************************************/
- /** **/
- /** Microsoft RPC Examples **/
- /** OSF DCE Interop Application **/
- /** Copyright(c) Microsoft Corp. 1993-1996 **/
- /** **/
- /*************************************************************/
- #include <stdio.h>
- #include "msg.h" /* header file generated by M/IDL compiler */
- #if defined(__RPC_WIN32__) || defined(__RPC_DOS__)
- #include "dceport.h"
- #endif
- /*
- * Print out client messages
- */
- void ClientMessage(unsigned char *message)
- {
- printf("%sn", message);
- return;
- }
- /*
- * The client can stop the server by calling this operation.
- */
- void ShutdownServer()
- {
- unsigned32 status;
- rpc_mgmt_stop_server_listening(0, &status);
- if (status)
- {
- printf("rpc_mgmt_stop_server_listening returns 0x%xn", status);
- }
- return;
- }