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.

49 lines
656 B

  1. /*
  2. * Copyright (c) 1998 Microsoft Corporation
  3. *
  4. * Module Name:
  5. *
  6. * registry.h
  7. *
  8. * Abstract:
  9. *
  10. * This file handles registry actions needed by License Server setup.
  11. *
  12. * Author:
  13. *
  14. * Breen Hagan (BreenH) Oct-02-98
  15. *
  16. * Environment:
  17. *
  18. * User Mode
  19. */
  20. #ifndef _LSOC_REGISTRY_H_
  21. #define _LSOC_REGISTRY_H_
  22. /*
  23. * Function Prototypes.
  24. */
  25. DWORD
  26. CreateRegistrySettings(
  27. LPCTSTR pszDatabaseDirectory,
  28. DWORD dwServerRole
  29. );
  30. LPCTSTR
  31. GetDatabaseDirectoryFromRegistry(
  32. VOID
  33. );
  34. DWORD
  35. GetServerRoleFromRegistry(
  36. VOID
  37. );
  38. DWORD
  39. RemoveRegistrySettings(
  40. VOID
  41. );
  42. #endif // _LSOC_REGISTRY_H_