SHSetValueA (SHLWAPI.@)
DWORD SHSetValueA ( HKEY hKey, LPCSTR lpszSubKey, LPCSTR lpszValue, DWORD dwType, LPCVOID pvData, DWORD cbData )
Set a value in the registry.
hKey | [In] | Handle to registry key. |
lpszSubKey | [In] | Name of sub key under hKey. |
lpszValue | [In] | Name of value to set. |
dwType | [In] | Type of the value. |
pvData | [In] | Data of the value. |
cbData | [In] | Size of the value. |
Success: ERROR_SUCCESS. The value is set with the data given.
Failure: An error code from RegCreateKeyExA or RegSetValueExA.
If lpszSubKey does not exist, it is created before the value is set. If lpszSubKey is NULL or an empty string, then the value is added directly to hKey instead.
Defined in "shlwapi.h".
Implemented in "dlls/shlwapi/reg.c". source.winehq.org/source/dlls/shlwapi/reg.c
Debug channel "shell".
Copyright © 2007 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Mar 2007.