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.

43 lines
749 B

  1. DWORD
  2. ReadRegDword(
  3. IN HKEY hKey,
  4. IN LPCTSTR pszRegistryPath,
  5. IN LPCTSTR pszValueName,
  6. IN DWORD dwDefaultValue
  7. );
  8. int
  9. SAFEIsSpace(UCHAR c);
  10. int
  11. SAFEIsXDigit(UCHAR c);
  12. VOID
  13. MakeAllProcessHeapsLFH();
  14. DWORD
  15. ReadDwordParameterValueFromAnyService(
  16. IN LPCWSTR Path,
  17. IN LPCWSTR RegistryValueName,
  18. IN DWORD DefaultValue
  19. );
  20. DWORD
  21. SetStringParameterValueInAnyService(
  22. IN LPCWSTR Path,
  23. IN LPCWSTR RegistryValueName,
  24. IN LPCWSTR pNewValue
  25. );
  26. HRESULT
  27. ReadStringParameterValueFromAnyService(
  28. IN LPCWSTR Path,
  29. IN LPCWSTR RegistryValueName,
  30. IN LPCWSTR pValue,
  31. IN DWORD* pcbSizeOfValue
  32. );
  33. BOOL
  34. IsSSLReportingBackwardCompatibilityMode();