mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
449 B
36 lines
449 B
/*++
|
|
|
|
Copyright (C) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
crypstub.h
|
|
|
|
Abstract:
|
|
|
|
RPC Proxy Stub to handle downlevel requests to the services.exe
|
|
pipe
|
|
|
|
Author:
|
|
|
|
petesk 3/1/00
|
|
|
|
Revisions:
|
|
|
|
|
|
--*/
|
|
|
|
extern "C" {
|
|
NTSTATUS
|
|
WINAPI
|
|
StartCryptServiceStubs(
|
|
PSVCS_START_RPC_SERVER RpcpStartRpcServer,
|
|
LPTSTR SvcsRpcPipeName
|
|
);
|
|
|
|
NTSTATUS
|
|
WINAPI
|
|
StopCryptServiceStubs(
|
|
PSVCS_STOP_RPC_SERVER RpcpStopRpcServer
|
|
);
|
|
};
|