Scroll to navigation

SHRegGetBoolUSValueA(3w) Wine API SHRegGetBoolUSValueA(3w)

NAME

SHRegGetBoolUSValueA (SHLWAPI.@)

SYNOPSIS

BOOL SHRegGetBoolUSValueA
(
LPCSTR pszSubKey,
LPCSTR pszValue,
BOOL fIgnoreHKCU,
BOOL fDefault
)
 

PARAMS

pszSubKey [In] Key name to open.
pszValue [In] Value name to open.
fIgnoreHKCU [In] TRUE=Don't check HKEY_CURRENT_USER.
fDefault [In] Default value to use if pszValue is not present.
 

DESCRIPTION

Get a user-specific registry boolean value.
 

RETURNS

Success: ERROR_SUCCESS
Failure: An error code from SHRegOpenUSKeyA(3w) or SHRegQueryUSValueA(3w).
 

NOTES

This function opens pszSubKey, queries the value, and then closes the key.
Boolean values are one of the following:
TRUE: YES,TRUE,non-zero
FALSE: NO,FALSE,0
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/reg.c".
Debug channel "shell".
Oct 2012 Wine API