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.

40 lines
580 B

  1. /*
  2. * LCReg.h
  3. *
  4. * Author: BreenH
  5. *
  6. * Registry constants and functions for the licensing core.
  7. */
  8. #ifndef __LC_LCREG_H__
  9. #define __LC_LCREG_H__
  10. /*
  11. * Base Licensing Core Key Constants
  12. */
  13. #define LCREG_TRACEVALUE L"TraceLevel"
  14. #define LCREG_ACONMODE L"PolicyAcOn"
  15. #define LCREG_ACOFFMODE L"PolicyAcOff"
  16. /*
  17. * Policy Key Constants
  18. */
  19. #define LCREG_POLICYDLLVALUE L"DllName"
  20. #define LCREG_POLICYCREATEFN L"CreationFunction"
  21. /*
  22. * Function Prototypes
  23. */
  24. HKEY
  25. GetBaseKey(
  26. );
  27. NTSTATUS
  28. RegistryInitialize(
  29. );
  30. #endif