ReactOS 0.4.15-dev-7834-g00c4b3d
FxIoQueueIoDeviceControl Class Reference

#include <fxioqueuecallbacks.hpp>

Inheritance diagram for FxIoQueueIoDeviceControl:
Collaboration diagram for FxIoQueueIoDeviceControl:

Public Member Functions

 FxIoQueueIoDeviceControl (VOID)
 
void Invoke (__in WDFQUEUE Queue, __in WDFREQUEST Request, __in ULONG OutputBufferLength, __in ULONG InputBufferLength, __in ULONG IoControlCode)
 
- Public Member Functions inherited from FxLockedCallback
 FxLockedCallback (VOID)
 
FxCallbackLockGetCallbackLockPtr (VOID)
 
void SetCallbackLockPtr (FxCallbackLock *Lock)
 

Public Attributes

PFN_WDF_IO_QUEUE_IO_DEVICE_CONTROL Method
 

Additional Inherited Members

- Protected Member Functions inherited from FxLockedCallback
__inline void CallbackStart (__out PKIRQL PreviousIrql)
 
__inline void CallbackEnd (__in KIRQL PreviousIrql)
 

Detailed Description

Definition at line 200 of file fxioqueuecallbacks.hpp.

Constructor & Destructor Documentation

◆ FxIoQueueIoDeviceControl()

FxIoQueueIoDeviceControl::FxIoQueueIoDeviceControl ( VOID  )
inline

Definition at line 205 of file fxioqueuecallbacks.hpp.

207 :
209 {
210 Method = NULL;
211 }
PFN_WDF_IO_QUEUE_IO_DEVICE_CONTROL Method
#define NULL
Definition: types.h:112

Member Function Documentation

◆ Invoke()

void FxIoQueueIoDeviceControl::Invoke ( __in WDFQUEUE  Queue,
__in WDFREQUEST  Request,
__in ULONG  OutputBufferLength,
__in ULONG  InputBufferLength,
__in ULONG  IoControlCode 
)
inline

Definition at line 214 of file fxioqueuecallbacks.hpp.

221 {
222 if (Method != NULL) {
223 KIRQL irql = 0;
224
226 Method(
227 Queue,
228 Request,
232 );
234 }
235 }
__inline void CallbackEnd(__in KIRQL PreviousIrql)
Definition: fxcallback.hpp:126
__inline void CallbackStart(__out PKIRQL PreviousIrql)
Definition: fxcallback.hpp:115
KIRQL irql
Definition: wave.h:1
UCHAR KIRQL
Definition: env_spec_w32.h:591
_Must_inspect_result_ _In_ WDFDEVICE _In_ PIRP _In_ WDFQUEUE Queue
Definition: wdfdevice.h:2225
_In_ WDFREQUEST Request
Definition: wdfdevice.h:547
_In_ WDFREQUEST _In_ size_t _In_ size_t _In_ ULONG IoControlCode
Definition: wdfio.h:325
_In_ WDFREQUEST _In_ size_t OutputBufferLength
Definition: wdfio.h:320
_In_ WDFREQUEST _In_ size_t _In_ size_t InputBufferLength
Definition: wdfio.h:322

Referenced by FxIoQueue::DispatchRequestToDriver().

Member Data Documentation

◆ Method


The documentation for this class was generated from the following file: