Leaked source code of windows server 2003
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.

38 lines
704 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. iiscrmap.hxx
  5. Abstract:
  6. Iiscrmap.dll implements mapper class that plug in to schannel.
  7. It is only wrapper for the functionality implemented in iismap.dll
  8. that performs the actual IIS client certificate mappings
  9. Starting from IIS6, iiscrmap is not used. Instead worker process
  10. calls directly iismap.dll.
  11. Note: NNTP shipped along with IIS6 is still using iiscrmap.
  12. --*/
  13. #ifndef _IISCRMAP_H_
  14. #define _IISCRMAP_H_
  15. extern "C"
  16. __declspec( dllexport )
  17. PMAPPER_VTABLE WINAPI
  18. InitializeMapper(
  19. VOID
  20. );
  21. extern "C"
  22. BOOL WINAPI
  23. TerminateMapper(
  24. VOID
  25. );
  26. #endif