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.

23 lines
672 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996
  5. //
  6. // File: registry.hxx
  7. //
  8. // History: 24-May-1996 RamV (Ram Viswanathan) created.
  9. //
  10. // Note: registry access code
  11. //
  12. //----------------------------------------------------------------------------
  13. HRESULT SetKeyAndValue(LPTSTR pszRegLocation,
  14. LPTSTR pszKey,
  15. LPTSTR pszSubKey,
  16. LPTSTR pszValue );
  17. HRESULT QueryKeyValue(LPTSTR pszRegLocation,
  18. LPTSTR pszKey,
  19. LPTSTR * ppszValue);