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.

42 lines
684 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. adtutil.h - Security Auditing - Utility Routines
  5. Abstract:
  6. This Module contains miscellaneous utility routines private to the
  7. Security Auditing Component.
  8. Author:
  9. 11-April-2001 kumarp created
  10. Environment:
  11. Kernel Mode
  12. Revision History:
  13. --*/
  14. NTSTATUS
  15. SepRegQueryDwordValue(
  16. IN PCWSTR KeyName,
  17. IN PCWSTR ValueName,
  18. OUT PULONG Value
  19. );
  20. NTSTATUS
  21. SepRegQueryHelper(
  22. IN PCWSTR KeyName,
  23. IN PCWSTR ValueName,
  24. IN ULONG ValueType,
  25. IN ULONG ValueLength,
  26. OUT PVOID ValueBuffer,
  27. OUT PULONG LengthRequired
  28. );