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.

45 lines
609 B

  1. /*++
  2. Copyright (c) 2002 Microsoft Corporation
  3. Module Name:
  4. sclgntfy.h
  5. Abstract:
  6. This module defines the exported function prototype
  7. for generating the EFS recovery policy.
  8. Author:
  9. Tarek Kamel (tarekk) April-2002
  10. Revision History:
  11. --*/
  12. #ifndef _sclgntfy_h_
  13. #define _sclgntfy_h_
  14. #include <wincrypt.h>
  15. #ifdef __cplusplus
  16. extern "C"{
  17. #endif
  18. DWORD
  19. WINAPI
  20. GenerateDefaultEFSRecoveryPolicy(
  21. OUT PUCHAR *pRecoveryPolicyBlob,
  22. OUT ULONG *pBlobSize,
  23. OUT PCCERT_CONTEXT *ppCertContext
  24. );
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif