WHELLOP.C
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:
Windows编程
开发平台:
Visual C++
- /****************************************************************************
- Microsoft RPC Version 2.0
- Copyright Microsoft Corp. 1992, 1993, 1994- 1996
- whello Example
- FILE: whellop.c
- PURPOSE: Remote procedures that are linked with the server
- side of RPC distributed application
- FUNCTIONS: HelloProc() - prints "hello, world" or other string
- sent by client to server
- COMMENTS: Windows version of the "Hello, world" example.
- Windows can have several copies of your application
- running at the same time. The variable hInst keeps
- track of which instance the application is so that
- processing will be to the correct window.
- ****************************************************************************/
- #include <stdlib.h>
- #include <stdio.h>
- #include "whello.h" // header file generated by MIDL compiler
- void HelloProc(unsigned char * pszString)
- {
- printf("%sn", pszString);
- }
- void Shutdown(void)
- {
- RPC_STATUS status;
- printf("Calling RpcMgmtStopServerListeningn");
- status = RpcMgmtStopServerListening(NULL);
- printf("RpcMgmtStopServerListening returned: 0x%xn", status);
- if (status) {
- exit(status);
- }
- printf("Calling RpcServerUnregisterIfn");
- status = RpcServerUnregisterIf(NULL, NULL, FALSE);
- printf("RpcServerUnregisterIf returned 0x%xn", status);
- if (status) {
- exit(status);
- }
- }
- /* end of file whellop.c */