WdfRegistryAssignULong function (wdfregistry.h)
[Applies to KMDF and UMDF]
The WdfRegistryAssignULong method assigns a specified unsigned long word value to a specified value name in the registry.
Syntax
NTSTATUS WdfRegistryAssignULong(
[in] WDFKEY Key,
[in] PCUNICODE_STRING ValueName,
[in] ULONG Value
);
Parameters
[in] Key
A handle to a registry-key object that represents an opened registry key.
[in] ValueName
A pointer to a UNICODE_STRING structure that contains a value name.
[in] Value
A ULONG value that will be assigned to the value name that ValueName specifies.
Return value
WdfRegistryAssignULong returns STATUS_SUCCESS if the operation succeeds. Otherwise, the method might return one of the following values:
Return code | Description |
---|---|
|
WdfRegistryAssignULong was not called at IRQL = PASSIVE_LEVEL. |
|
An invalid parameter was specified. |
|
The driver did not open the registry key with KEY_SET_VALUE access. |
This method also might return other NTSTATUS values.
A bug check occurs if the driver supplies an invalid object handle.
Remarks
If the value name that the ValueName parameter specifies already exists, WdfRegistryAssignULong updates the value's data.
The framework sets the value's data type to REG_DWORD.
For more information about registry-key objects, see Using the Registry in Framework-Based Drivers.
Examples
The following code example assigns the constant MY_VALUE to the ValueName value, under a specified registry key.
UNICODE_STRING valueName;
NTSTATUS status;
RtlInitUnicodeString(
&valueName,
L"ValueName"
);
status = WdfRegistryAssignULong(
Key,
&valueName,
MY_VALUE
);
Requirements
Requirement | Value |
---|---|
Target Platform | Universal |
Minimum KMDF version | 1.0 |
Minimum UMDF version | 2.0 |
Header | wdfregistry.h (include Wdf.h) |
Library | Wdf01000.sys (KMDF); WUDFx02000.dll (UMDF) |
IRQL | PASSIVE_LEVEL |
DDI compliance rules | DriverCreate(kmdf), KmdfIrql(kmdf), KmdfIrql2(kmdf), KmdfIrqlExplicit(kmdf) |