fonction WDF_QUERY_INTERFACE_CONFIG_INIT (wdfqueryinterface.h)
[S’applique uniquement à KMDF]
La fonction WDF_QUERY_INTERFACE_CONFIG_INIT initialise la structure WDF_QUERY_INTERFACE_CONFIG d’un pilote.
Syntaxe
void WDF_QUERY_INTERFACE_CONFIG_INIT(
[out] PWDF_QUERY_INTERFACE_CONFIG InterfaceConfig,
[in] PINTERFACE Interface,
[in] const GUID *InterfaceType,
[in, optional] PFN_WDF_DEVICE_PROCESS_QUERY_INTERFACE_REQUEST EvtDeviceProcessQueryInterfaceRequest
);
Paramètres
[out] InterfaceConfig
Pointeur vers la structure WDF_QUERY_INTERFACE_CONFIG du pilote.
[in] Interface
Pointeur vers une structure interface.
[in] InterfaceType
Pointeur vers le GUID qui identifie l’interface.
[in, optional] EvtDeviceProcessQueryInterfaceRequest
Pointeur vers l'EvtDeviceProcessQueryInterfaceRequest du pilote fonction de rappel d’événement, appelée lorsqu’un autre pilote demande l’interface.
Valeur de retour
Aucun
Remarques
Pour plus d’informations sur les interfaces définies par le pilote, consultez Using Driver-Defined Interfaces.
Exemples
Pour obtenir un exemple de code qui utilise WDF_QUERY_INTERFACE_CONFIG_INIT, consultez WdfDeviceAddQueryInterface.
Spécifications
Besoin | Valeur |
---|---|
plateforme cible | Universel |
version minimale de KMDF | 1.0 |
En-tête | wdfqueryinterface.h (include Wdf.h) |