DWORD
VC_ReadProfileUser(
PVC_PROFILE_INFO pProfile,
PWCHAR ValueName,
DWORD dwDefault
);
The VC_ReadProfileUser function reads the DWORD value associated with the specified value name, under the user’s profile information in the registry.
Returns the value assigned to the ValueName string, if the operation succeeds. If the ValueName string does not exist in the registry, cannot be accessed, or is not a REG_DWORD type, the function returns the value specified by dwDefault.
The value name and value are read from the registry path HKEY_CURRENT_USER \Software \Microsoft \Multimedia \Video Capture \DriverName, where DriverName is the driver name specified as input to VC_OpenProfileAccess.
To store values under this registry key, call VC_WriteProfileUser.
VC_ReadProfile, VC_ReadProfileString, VC_WriteProfile, VC_WriteProfileUser