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.
31 lines
360 B
31 lines
360 B
/*++
|
|
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
iiscrmap.hxx
|
|
|
|
Abstract:
|
|
|
|
This module contains the Microsoft cert mapper functions
|
|
|
|
--*/
|
|
|
|
#ifndef _IISCRMAP_H_
|
|
#define _IISCRMAP_H_
|
|
|
|
extern "C"
|
|
__declspec( dllexport )
|
|
PMAPPER_VTABLE WINAPI
|
|
InitializeMapper(
|
|
VOID
|
|
);
|
|
|
|
extern "C"
|
|
BOOL WINAPI
|
|
TerminateMapper(
|
|
VOID
|
|
);
|
|
|
|
#endif
|