// portabledevice.h
typedef enum tagWPD_PARAMETER_USAGE_TYPES {
WPD_PARAMETER_USAGE_RETURN,
WPD_PARAMETER_USAGE_IN,
WPD_PARAMETER_USAGE_OUT,
WPD_PARAMETER_USAGE_INOUT
} WPD_PARAMETER_USAGE_TYPES;
View the official Windows Driver Kit DDI referenceNo description available.
The WPD_PARAMETER_USAGE_TYPES enumeration type specifies the inheritance relationship for a service.
WPD_PARAMETER_USAGE_RETURNThe parameter receives the return value, if specified by the method.
WPD_PARAMETER_USAGE_INThe parameter contains an input value before the method is called.
WPD_PARAMETER_USAGE_OUTThe parameter contains an output value when the method returns.
WPD_PARAMETER_USAGE_INOUTThe parameter contains an input value before the method is called and an output value when it returns.