54 lines
570 B
C
54 lines
570 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 1991 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
rpcinit.c
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
DSROLE - RPC Server Initialization
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Scott Birrell (ScottBi) April 29, 1991
|
||
|
Mac McLain (MacM) April 14, 1997 - Copied from lsa\server
|
||
|
|
||
|
Environment:
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#include <dssetrpc.h>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
VOID DSROLER_HANDLE_rundown(
|
||
|
DSROLER_HANDLE LsaHandle
|
||
|
)
|
||
|
|
||
|
/*++
|
||
|
|
||
|
Routine Description:
|
||
|
|
||
|
This routine is called by the server RPC runtime to run down a
|
||
|
Context Handle.
|
||
|
|
||
|
Arguments:
|
||
|
|
||
|
None.
|
||
|
|
||
|
Return Value:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|