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
43 lines
749 B
|
|
DWORD
|
|
ReadRegDword(
|
|
IN HKEY hKey,
|
|
IN LPCTSTR pszRegistryPath,
|
|
IN LPCTSTR pszValueName,
|
|
IN DWORD dwDefaultValue
|
|
);
|
|
|
|
int
|
|
SAFEIsSpace(UCHAR c);
|
|
|
|
int
|
|
SAFEIsXDigit(UCHAR c);
|
|
|
|
VOID
|
|
MakeAllProcessHeapsLFH();
|
|
|
|
DWORD
|
|
ReadDwordParameterValueFromAnyService(
|
|
IN LPCWSTR Path,
|
|
IN LPCWSTR RegistryValueName,
|
|
IN DWORD DefaultValue
|
|
);
|
|
|
|
DWORD
|
|
SetStringParameterValueInAnyService(
|
|
IN LPCWSTR Path,
|
|
IN LPCWSTR RegistryValueName,
|
|
IN LPCWSTR pNewValue
|
|
);
|
|
|
|
HRESULT
|
|
ReadStringParameterValueFromAnyService(
|
|
IN LPCWSTR Path,
|
|
IN LPCWSTR RegistryValueName,
|
|
IN LPCWSTR pValue,
|
|
IN DWORD* pcbSizeOfValue
|
|
);
|
|
|
|
BOOL
|
|
IsSSLReportingBackwardCompatibilityMode();
|
|
|