2025-11-28 00:35:46 +09:00

54 lines
1.5 KiB
C

// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved.
/****************************************************************************
Microsoft RPC
usrdef Example
FILE: usrdefp.c
PURPOSE: Remote procedures that are linked with the server
side of RPC distributed application
FUNCTIONS: UsrdefProc() -
COMMENTS: This distributed application uses a user-defined handle.
****************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include "usrdef.h" // header file generated by MIDL compiler
void UsrdefProc(DATA_HANDLE_TYPE dh, unsigned char * pszString)
{
printf_s("%s\n", pszString);
}
void Shutdown(DATA_HANDLE_TYPE dh)
{
RPC_STATUS status;
printf_s("Calling RpcMgmtStopServerListening\n");
status = RpcMgmtStopServerListening(NULL);
printf_s("RpcMgmtStopServerListening returned: 0x%x\n", status);
if (status) {
exit(status);
}
printf_s("Calling RpcServerUnregisterIf\n");
status = RpcServerUnregisterIf(NULL, NULL, FALSE);
printf_s("RpcServerUnregisterIf returned 0x%x\n", status);
if (status) {
exit(status);
}
}
/* end file usrdefp.c */