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.

26 lines
422 B

  1. #pragma once
  2. LONG
  3. RegQueryDword (
  4. IN HKEY hkey,
  5. IN LPCTSTR pszValueName,
  6. OUT LPDWORD pdwValue
  7. );
  8. LONG
  9. RegQueryString (
  10. IN HKEY hkey,
  11. IN LPCTSTR pszValueName,
  12. IN DWORD dwTypeMustBe,
  13. OUT PTSTR* ppszData
  14. );
  15. LONG
  16. RegQueryStringA (
  17. IN HKEY hkey,
  18. IN LPCTSTR pszValueName,
  19. IN DWORD dwTypeMustBe,
  20. OUT PSTR* ppszData
  21. );