Source code of Windows XP (NT5)
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.

65 lines
791 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. iiscryptp.h
  5. Abstract:
  6. This include file contains private constants, type definitions, and
  7. function prototypes shared between the various IIS cryptographic
  8. routines but *not* available to "normal" code.
  9. Author:
  10. Keith Moore (keithmo) 23-Apr-1998
  11. Revision History:
  12. --*/
  13. #ifndef _IISCRYPTP_H_
  14. #define _IISCRYPTP_H_
  15. //
  16. // Get the dependent include files.
  17. //
  18. #include <iiscrypt.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif // __cplusplus
  22. //
  23. // Global lock manipulators.
  24. //
  25. IIS_CRYPTO_API
  26. VOID
  27. WINAPI
  28. IcpAcquireGlobalLock(
  29. VOID
  30. );
  31. IIS_CRYPTO_API
  32. VOID
  33. WINAPI
  34. IcpReleaseGlobalLock(
  35. VOID
  36. );
  37. #ifdef __cplusplus
  38. } // extern "C"
  39. #endif // __cplusplus
  40. #endif // _IISCRYPTP_H_