WdfDeviceInitSetExclusive - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfdevice.h

VOID WdfDeviceInitSetExclusive(
  [in] PWDFDEVICE_INIT DeviceInit,
  [in] BOOLEAN         IsExclusive
);

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdfdevice-wdfdeviceinitsetexclusive)

WdfDeviceInitSetExclusive function

Description

[Applies to KMDF only]

The WdfDeviceInitSetExclusive method indicates whether a specified device is an exclusive device.

Parameters

DeviceInit [in]

A pointer to a WDFDEVICE_INIT structure.

IsExclusive [in]

A Boolean value which, if TRUE, indicates that the device is an exclusive device. If FALSE, the device is not an exclusive device.

Remarks

If a driver calls WdfDeviceInitSetExclusive, it must do so before it calls WdfDeviceCreate.

If a driver calls WdfDeviceInitSetExclusive, only that driver's device object is exclusive. To make a device's entire device stack exclusive, the device's INF file should include an INF AddReg directive that sets an Exclusive entry to TRUE in the registry.

For more information about calling WdfDeviceCreate, see Creating a Framework Device Object.

If you are writing a UMDF driver, you must modify your driver's INF file or make registry changes to indicate whether the device is exclusive. For more information about using the registry, see Setting Device Object Registry Properties During Installation.

Examples

The following code example indicates that a device is an exclusive device.

WdfDeviceInitSetExclusive(
                          DeviceInit,
                          TRUE
                          );

See also

EvtDriverDeviceAdd

WdfDeviceCreate