SetupDiSetClassPropertyW function (setupapi.h)
The SetupDiSetClassProperty function sets a class property for a device setup class or a device interface class.
Syntax
WINSETUPAPI BOOL SetupDiSetClassPropertyW(
[in] const GUID *ClassGuid,
[in] const DEVPROPKEY *PropertyKey,
[in] DEVPROPTYPE PropertyType,
[in, optional] const PBYTE PropertyBuffer,
[in] DWORD PropertyBufferSize,
[in] DWORD Flags
);
Parameters
[in] ClassGuid
A pointer to a GUID that identifies the device setup class or device interface class for which to set a device property. For information about how to specify the class type, see the Flags parameter.
[in] PropertyKey
A pointer to a DEVPROPKEY structure that represents the device property key of the device class property to set.
[in] PropertyType
A DEVPROPTYPE-typed value that represents the property-data-type identifier for the device class property. For more information about the property-data-type identifier, see the Remarks section later in this topic.
[in, optional] PropertyBuffer
A pointer to a buffer that contains the property value of the device class. If either the property or the data is being deleted, this pointer must be set to NULL, and PropertyBufferSize must be set to zero. For more information about property data, see the Remarks section later in this topic.
[in] PropertyBufferSize
The size, in bytes, of the PropertyBuffer buffer. If PropertyBuffer is set to NULL, PropertyBufferSize must be set to zero.
[in] Flags
One of the following values, which specifies whether the class is a device setup class or a device interface class:
DICLASSPROP_INSTALLER
ClassGuid specifies a device setup class. This flag cannot be used with DICLASSPROP_INTERFACE.
DICLASSPROP_INTERFACE
ClassGuid specifies a device interface class. This flag cannot be used with DICLASSPROP_INSTALLER.
Return value
SetupDiSetClassProperty returns TRUE if it is successful. Otherwise, it returns FALSE, and the logged error can be retrieved by calling GetLastError.
The following table includes some of the more common error codes that this function might log.
Return code | Description |
---|---|
|
The value of Flags is invalid. |
|
The device setup class that is specified by ClassGuid is not valid. This error can occur only if the DICLASSPROP_INSTALLER flag is specified. |
|
The device interface reference string is not valid. This error can occur only if the DICLASSPROP_INTERFACE flag is specified. |
|
The property key that is supplied by PropertyKey is not valid. |
|
An unspecified internal data value was not valid. This error could be logged if the ClassGuid value is not a valid GUID or the property value is not consistent with the property type specified by PropertyType. |
|
A user buffer is not valid. One possibility is that PropertyBuffer is NULL, and PropertyBufferSize is not zero. |
|
The device interface class that is specified by ClassGuid does not exist. This error can occur only if the DICLASSPROP_INTERFACE flag is specified. |
|
An internal data buffer that was passed to a system call was too small. |
|
There was not enough system memory available to complete the operation. |
|
An unspecified item was not found. One possibility is that the property to be deleted does not exist. |
|
The caller does not have Administrator privileges. |
Remarks
SetupDiSetClassProperty is part of the unified device property model.
SetupAPI supports only a Unicode version of SetupDiSetClassProperty.
A caller of SetupDiSetClassProperty must be a member of the Administrators group to set a device interface property.
SetupDiSetClassProperty enforces requirements on the property-data-type identifier and the property value.
To obtain the device property keys that represent the device properties that are set for a device class on a local computer, call SetupDiGetClassPropertyKeys.
To retrieve a device class property on a local computer, call SetupDiGetClassProperty, and to retrieve a device class property on a remote computer, call SetupDiGetClassPropertyEx.
To set a device class property on a remote computer, call SetupDiSetClassPropertyEx.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Available in Windows Vista and later versions of Windows. |
Target Platform | DesktopFor universal, call CM_Set_Class_Property |
Header | setupapi.h (include Setupapi.h) |
Library | Setupapi.lib |