// ucxcontroller.h
NTSTATUS UcxControllerSetIdStrings(
UCXCONTROLLER Controller,
[in] PUNICODE_STRING ManufacturerNameString,
[in] PUNICODE_STRING ModelNameString,
[in] PUNICODE_STRING ModelNumberString
);
View the official Windows Driver Kit DDI referenceNo description available.
Updates the identifier strings of a controller after the controller has been initialized.
ControllerA handle to the UCX controller that the client driver received in a previous call to the UcxControllerCreate method.
ManufacturerNameString [in]A string that contains the name of controller manufacturer.
ModelNameString [in]A string that contains the name of device model.
ModelNumberString [in]A string that contains the revision number of the device model.
The function returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return one an appropriate NTSTATUS error code.