// wdftypes.h
typedef enum _WDF_TRI_STATE {
WdfFalse = FALSE,
WdfTrue = TRUE,
WdfUseDefault = 2
} WDF_TRI_STATE, *PWDF_TRI_STATE;
View the official Windows Driver Kit DDI reference
// wudfddi_types.h
typedef enum _WDF_TRI_STATE {
WdfUseDefault,
WdfFalse,
WdfTrue
} WDF_TRI_STATE, *PWDF_TRI_STATE;
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_TRI_STATE enumeration type defines three values that the framework uses for some structure members and function parameters.
WdfFalse:FALSE
The meaning of this enumerator is specific to its use as a structure member or function parameter.
WdfTrue:TRUE
The meaning of this enumerator is specific to its use as a structure member or function parameter.
WdfUseDefault:2
The meaning of this enumerator is specific to its use as a structure member or function parameter.
The WDF_TRI_STATE enumeration type is available in version 1.0 and later versions of KMDF.
[Applies to KMDF and UMDF]
The WDF_TRI_STATE enumeration type defines three values that the framework uses for some structure members and function parameters.
WdfUseDefault
The meaning of this enumerator is specific to its use as a structure member or function parameter.
WdfFalse
The meaning of this enumerator is specific to its use as a structure member or function parameter.
WdfTrue
The meaning of this enumerator is specific to its use as a structure member or function parameter.
The WDF_TRI_STATE enumeration type is available in version 1.0 and later versions of KMDF.