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.

49 lines
655 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. memprot.h
  5. Abstract:
  6. This module contains routines for accessing sensitive data stored in
  7. memory in encrypted form.
  8. Author:
  9. Scott Field (sfield) 07-Nov-98
  10. Revision History:
  11. --*/
  12. #ifndef __MEMPROT_H__
  13. #define __MEMPROT_H__
  14. #ifdef __cplusplus
  15. extern "C"
  16. {
  17. #endif // __cplusplus
  18. VOID
  19. LsaProtectMemory(
  20. VOID *pData,
  21. ULONG cbData
  22. );
  23. extern "C"
  24. VOID
  25. LsaUnprotectMemory(
  26. VOID *pData,
  27. ULONG cbData
  28. );
  29. #ifdef __cplusplus
  30. }
  31. #endif // __cplusplus
  32. #endif // __MEMPROT_H__