mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
1354 lines
31 KiB
C
1354 lines
31 KiB
C
/*++
|
|
|
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
_WdfVersionBuild_
|
|
|
|
Module Name:
|
|
|
|
wdfiotarget.h
|
|
|
|
Abstract:
|
|
|
|
Interfaces for WDF IO Targets
|
|
|
|
Environment:
|
|
|
|
kernel mode only
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
//
|
|
// NOTE: This header is generated by stubwork. Please make any
|
|
// modifications to the corresponding template files
|
|
// (.x or .y) and use stubwork to regenerate the header
|
|
//
|
|
|
|
#ifndef _WDFIOTARGET_H_
|
|
#define _WDFIOTARGET_H_
|
|
|
|
#ifndef WDF_EXTERN_C
|
|
#ifdef __cplusplus
|
|
#define WDF_EXTERN_C extern "C"
|
|
#define WDF_EXTERN_C_START extern "C" {
|
|
#define WDF_EXTERN_C_END }
|
|
#else
|
|
#define WDF_EXTERN_C
|
|
#define WDF_EXTERN_C_START
|
|
#define WDF_EXTERN_C_END
|
|
#endif
|
|
#endif
|
|
|
|
WDF_EXTERN_C_START
|
|
|
|
|
|
|
|
|
|
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
|
|
|
typedef enum _WDF_IO_TARGET_STATE {
|
|
WdfIoTargetStateUndefined = 0,
|
|
WdfIoTargetStarted,
|
|
WdfIoTargetStopped,
|
|
WdfIoTargetClosedForQueryRemove,
|
|
WdfIoTargetClosed,
|
|
WdfIoTargetDeleted,
|
|
WdfIoTargetPurged,
|
|
} WDF_IO_TARGET_STATE, *PWDF_IO_TARGET_STATE;
|
|
|
|
typedef enum _WDF_IO_TARGET_OPEN_TYPE {
|
|
WdfIoTargetOpenUndefined = 0,
|
|
WdfIoTargetOpenUseExistingDevice = 1,
|
|
WdfIoTargetOpenByName = 2,
|
|
WdfIoTargetOpenReopen = 3,
|
|
WdfIoTargetOpenLocalTargetByFile = 4,
|
|
} WDF_IO_TARGET_OPEN_TYPE;
|
|
|
|
typedef enum _WDF_IO_TARGET_SENT_IO_ACTION {
|
|
WdfIoTargetSentIoUndefined = 0,
|
|
WdfIoTargetCancelSentIo,
|
|
WdfIoTargetWaitForSentIoToComplete,
|
|
WdfIoTargetLeaveSentIoPending,
|
|
} WDF_IO_TARGET_SENT_IO_ACTION;
|
|
|
|
typedef enum _WDF_IO_TARGET_PURGE_IO_ACTION {
|
|
WdfIoTargetPurgeIoUndefined = 0,
|
|
WdfIoTargetPurgeIoAndWait = 1,
|
|
WdfIoTargetPurgeIo = 2,
|
|
} WDF_IO_TARGET_PURGE_IO_ACTION;
|
|
|
|
|
|
|
|
typedef
|
|
_Function_class_(EVT_WDF_IO_TARGET_QUERY_REMOVE)
|
|
_IRQL_requires_same_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
NTSTATUS
|
|
STDCALL
|
|
EVT_WDF_IO_TARGET_QUERY_REMOVE(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
typedef EVT_WDF_IO_TARGET_QUERY_REMOVE *PFN_WDF_IO_TARGET_QUERY_REMOVE;
|
|
|
|
typedef
|
|
_Function_class_(EVT_WDF_IO_TARGET_REMOVE_CANCELED)
|
|
_IRQL_requires_same_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
VOID
|
|
STDCALL
|
|
EVT_WDF_IO_TARGET_REMOVE_CANCELED(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
typedef EVT_WDF_IO_TARGET_REMOVE_CANCELED *PFN_WDF_IO_TARGET_REMOVE_CANCELED;
|
|
|
|
typedef
|
|
_Function_class_(EVT_WDF_IO_TARGET_REMOVE_COMPLETE)
|
|
_IRQL_requires_same_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
VOID
|
|
STDCALL
|
|
EVT_WDF_IO_TARGET_REMOVE_COMPLETE(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
typedef EVT_WDF_IO_TARGET_REMOVE_COMPLETE *PFN_WDF_IO_TARGET_REMOVE_COMPLETE;
|
|
|
|
typedef struct _WDF_IO_TARGET_OPEN_PARAMS {
|
|
//
|
|
// Size of this structure in bytes
|
|
//
|
|
ULONG Size;
|
|
|
|
//
|
|
// Indicates which fields of this structure are going to be used in
|
|
// creating the WDFIOTARGET.
|
|
//
|
|
WDF_IO_TARGET_OPEN_TYPE Type;
|
|
|
|
//
|
|
// Notification when the target is being queried for removal.
|
|
// If !NT_SUCCESS is returned, the query will fail and the target will
|
|
// remain opened.
|
|
//
|
|
PFN_WDF_IO_TARGET_QUERY_REMOVE EvtIoTargetQueryRemove;
|
|
|
|
//
|
|
// The previous query remove has been canceled and the target can now be
|
|
// reopened.
|
|
//
|
|
PFN_WDF_IO_TARGET_REMOVE_CANCELED EvtIoTargetRemoveCanceled;
|
|
|
|
//
|
|
// The query remove has succeeded and the target is now removed from the
|
|
// system.
|
|
//
|
|
PFN_WDF_IO_TARGET_REMOVE_COMPLETE EvtIoTargetRemoveComplete;
|
|
|
|
|
|
// <KMDF_ONLY/>
|
|
// ========== WdfIoTargetOpenUseExistingDevice begin ==========
|
|
//
|
|
// The device object to send requests to
|
|
//
|
|
PDEVICE_OBJECT TargetDeviceObject;
|
|
|
|
// <KMDF_ONLY/>
|
|
// File object representing the TargetDeviceObject. The PFILE_OBJECT will
|
|
// be passed as a parameter in all requests sent to the resulting
|
|
// WDFIOTARGET.
|
|
//
|
|
PFILE_OBJECT TargetFileObject;
|
|
|
|
// ========== WdfIoTargetOpenUseExistingDevice end ==========
|
|
|
|
// ========== WdfIoTargetOpenByName begin ==========
|
|
//
|
|
// Name of the device to open.
|
|
//
|
|
UNICODE_STRING TargetDeviceName;
|
|
|
|
// <KMDF_DOC>
|
|
// The access desired on the device being opened up, ie WDM FILE_XXX_ACCESS
|
|
// such as FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS, or
|
|
// FILE_WRITE_ACCESS or you can use values such as GENERIC_READ,
|
|
// GENERIC_WRITE, or GENERIC_ALL.
|
|
// </KMDF_DOC>
|
|
// <UMDF_DOC>
|
|
// The requested access to the file or device, which can be summarized as
|
|
// read, write, both or neither zero). For more information about
|
|
// this member, see the dwDesiredAccess parameter of CreateFile in the
|
|
// Windows SDK. Note that ACCESS_MASK data type is a DWORD value.
|
|
// </UMDF_DOC>
|
|
//
|
|
ACCESS_MASK DesiredAccess;
|
|
|
|
//
|
|
// <KMDF_DOC>
|
|
// Share access desired on the target being opened, ie WDM FILE_SHARE_XXX
|
|
// values such as FILE_SHARE_READ, FILE_SHARE_WRITE, FILE_SHARE_DELETE.
|
|
// A zero value means exclusive access to the target.
|
|
//
|
|
// </KMDF_DOC>
|
|
// <UMDF_DOC>
|
|
// The type of sharing to allow for the file. For more information about
|
|
// this member, see the dwShareMode parameter of CreateFile in the
|
|
// Windows SDK. A value of 0 means exclusive access.
|
|
// </UMDF_DOC>
|
|
//
|
|
ULONG ShareAccess;
|
|
|
|
//
|
|
// <KMDF_DOC>
|
|
// File attributes, see ZwCreateFile in the DDK for a list of valid
|
|
// values and their meaning.
|
|
// </KMDF_DOC>
|
|
// <UMDF_DOC>
|
|
// Additional flags and attributes for the file. For more information about
|
|
// this member, see the dwFlagsAndAttributes parameter of CreateFile
|
|
// in the Windows SDK.
|
|
// </UMDF_DOC>
|
|
//
|
|
ULONG FileAttributes;
|
|
|
|
//
|
|
// <KMDF_DOC>
|
|
// Create disposition, see ZwCreateFile in the DDK for a list of valid
|
|
// values and their meaning.
|
|
// </KMDF_DOC>
|
|
// <UMDF_DOC>
|
|
// The action to take if the file already exists. For more information
|
|
// about this member, see the dwCreationDisposition parameter of
|
|
// CreateFile in the Windows SDK.
|
|
// </UMDF_DOC>
|
|
//
|
|
ULONG CreateDisposition;
|
|
|
|
//
|
|
// <KMDF_ONLY/>
|
|
// Options for opening the device, see CreateOptions for ZwCreateFile in the
|
|
// DDK for a list of valid values and their meaning.
|
|
//
|
|
ULONG CreateOptions;
|
|
|
|
//
|
|
// <KMDF_ONLY/>
|
|
//
|
|
PVOID EaBuffer;
|
|
|
|
//
|
|
// <KMDF_ONLY/>
|
|
//
|
|
ULONG EaBufferLength;
|
|
|
|
//
|
|
// <KMDF_ONLY/>
|
|
//
|
|
PLONGLONG AllocationSize;
|
|
|
|
// ========== WdfIoTargetOpenByName end ==========
|
|
|
|
//
|
|
// <KMDF_ONLY/>
|
|
//
|
|
// On return for a create by name, this will contain one of the following
|
|
// values: FILE_CREATED, FILE_OPENED, FILE_OVERWRITTEN, FILE_SUPERSEDED,
|
|
// FILE_EXISTS, FILE_DOES_NOT_EXIST
|
|
//
|
|
ULONG FileInformation;
|
|
|
|
// ========== WdfIoTargetOpenLocalTargetByFile begin ==========
|
|
|
|
//
|
|
// <UMDF_ONLY/> A UNICODE_STRING-formatted string that contains the
|
|
// name of the file to create a file object from. This parameter is
|
|
// optional, and is applicable only when Type parameter is
|
|
// WdfIoTargetOpenLocalTargetByFile. The driver can leave this member
|
|
// unchanged if the driver does not have to create the file object
|
|
// from a file name. If the driver must supply a name, the string that
|
|
// the driver passes must not contain any path separator characters
|
|
// ("/" or "\").
|
|
//
|
|
UNICODE_STRING FileName;
|
|
|
|
// ========== WdfIoTargetOpenLocalTargetByFile end ==========
|
|
|
|
} WDF_IO_TARGET_OPEN_PARAMS, *PWDF_IO_TARGET_OPEN_PARAMS;
|
|
|
|
|
|
FORCEINLINE
|
|
VOID
|
|
WDF_IO_TARGET_OPEN_PARAMS_INIT_EXISTING_DEVICE(
|
|
_Out_ PWDF_IO_TARGET_OPEN_PARAMS Params,
|
|
_In_ PDEVICE_OBJECT DeviceObject
|
|
)
|
|
{
|
|
RtlZeroMemory(Params, sizeof(WDF_IO_TARGET_OPEN_PARAMS));
|
|
|
|
Params->Size = sizeof(WDF_IO_TARGET_OPEN_PARAMS);
|
|
Params->Type = WdfIoTargetOpenUseExistingDevice;
|
|
|
|
Params->TargetDeviceObject = DeviceObject;
|
|
}
|
|
|
|
|
|
FORCEINLINE
|
|
VOID
|
|
WDF_IO_TARGET_OPEN_PARAMS_INIT_CREATE_BY_NAME(
|
|
_Out_ PWDF_IO_TARGET_OPEN_PARAMS Params,
|
|
_In_ PCUNICODE_STRING TargetDeviceName,
|
|
_In_ ACCESS_MASK DesiredAccess
|
|
)
|
|
{
|
|
RtlZeroMemory(Params, sizeof(WDF_IO_TARGET_OPEN_PARAMS));
|
|
|
|
Params->Size = sizeof(WDF_IO_TARGET_OPEN_PARAMS);
|
|
Params->Type = WdfIoTargetOpenByName;
|
|
|
|
RtlCopyMemory(&Params->TargetDeviceName,
|
|
TargetDeviceName,
|
|
sizeof(UNICODE_STRING));
|
|
Params->DesiredAccess = DesiredAccess;
|
|
Params->CreateOptions = FILE_NON_DIRECTORY_FILE;
|
|
}
|
|
|
|
FORCEINLINE
|
|
VOID
|
|
WDF_IO_TARGET_OPEN_PARAMS_INIT_OPEN_BY_NAME(
|
|
_Out_ PWDF_IO_TARGET_OPEN_PARAMS Params,
|
|
_In_ PCUNICODE_STRING TargetDeviceName,
|
|
_In_ ACCESS_MASK DesiredAccess
|
|
)
|
|
{
|
|
WDF_IO_TARGET_OPEN_PARAMS_INIT_CREATE_BY_NAME(Params,
|
|
TargetDeviceName,
|
|
DesiredAccess);
|
|
Params->CreateDisposition = FILE_OPEN;
|
|
}
|
|
|
|
|
|
|
|
|
|
FORCEINLINE
|
|
VOID
|
|
WDF_IO_TARGET_OPEN_PARAMS_INIT_REOPEN(
|
|
_Out_ PWDF_IO_TARGET_OPEN_PARAMS Params
|
|
)
|
|
{
|
|
RtlZeroMemory(Params, sizeof(WDF_IO_TARGET_OPEN_PARAMS));
|
|
|
|
Params->Size = sizeof(WDF_IO_TARGET_OPEN_PARAMS);
|
|
Params->Type = WdfIoTargetOpenReopen;
|
|
}
|
|
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetCreate
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETCREATE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFDEVICE Device,
|
|
_In_opt_
|
|
PWDF_OBJECT_ATTRIBUTES IoTargetAttributes,
|
|
_Out_
|
|
WDFIOTARGET* IoTarget
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetCreate(
|
|
_In_
|
|
WDFDEVICE Device,
|
|
_In_opt_
|
|
PWDF_OBJECT_ATTRIBUTES IoTargetAttributes,
|
|
_Out_
|
|
WDFIOTARGET* IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETCREATE) WdfFunctions[WdfIoTargetCreateTableIndex])(WdfDriverGlobals, Device, IoTargetAttributes, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetOpen
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETOPEN)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
PWDF_IO_TARGET_OPEN_PARAMS OpenParams
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetOpen(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
PWDF_IO_TARGET_OPEN_PARAMS OpenParams
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETOPEN) WdfFunctions[WdfIoTargetOpenTableIndex])(WdfDriverGlobals, IoTarget, OpenParams);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetCloseForQueryRemove
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
VOID
|
|
(STDCALL *PFN_WDFIOTARGETCLOSEFORQUERYREMOVE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
VOID
|
|
WdfIoTargetCloseForQueryRemove(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
((PFN_WDFIOTARGETCLOSEFORQUERYREMOVE) WdfFunctions[WdfIoTargetCloseForQueryRemoveTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetClose
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
VOID
|
|
(STDCALL *PFN_WDFIOTARGETCLOSE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
VOID
|
|
WdfIoTargetClose(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
((PFN_WDFIOTARGETCLOSE) WdfFunctions[WdfIoTargetCloseTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetStart
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETSTART)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetStart(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETSTART) WdfFunctions[WdfIoTargetStartTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetStop
|
|
//
|
|
typedef
|
|
_When_(Action == 3, _IRQL_requires_max_(DISPATCH_LEVEL))
|
|
_When_(Action == 0 || Action == 1 || Action == 2, _IRQL_requires_max_(PASSIVE_LEVEL))
|
|
WDFAPI
|
|
VOID
|
|
(STDCALL *PFN_WDFIOTARGETSTOP)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
_Strict_type_match_
|
|
WDF_IO_TARGET_SENT_IO_ACTION Action
|
|
);
|
|
|
|
_When_(Action == 3, _IRQL_requires_max_(DISPATCH_LEVEL))
|
|
_When_(Action == 0 || Action == 1 || Action == 2, _IRQL_requires_max_(PASSIVE_LEVEL))
|
|
FORCEINLINE
|
|
VOID
|
|
WdfIoTargetStop(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
_Strict_type_match_
|
|
WDF_IO_TARGET_SENT_IO_ACTION Action
|
|
)
|
|
{
|
|
((PFN_WDFIOTARGETSTOP) WdfFunctions[WdfIoTargetStopTableIndex])(WdfDriverGlobals, IoTarget, Action);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetPurge
|
|
//
|
|
typedef
|
|
_When_(Action == 2, _IRQL_requires_max_(DISPATCH_LEVEL))
|
|
_When_(Action == 0 || Action == 1, _IRQL_requires_max_(PASSIVE_LEVEL))
|
|
WDFAPI
|
|
VOID
|
|
(STDCALL *PFN_WDFIOTARGETPURGE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
_Strict_type_match_
|
|
WDF_IO_TARGET_PURGE_IO_ACTION Action
|
|
);
|
|
|
|
_When_(Action == 2, _IRQL_requires_max_(DISPATCH_LEVEL))
|
|
_When_(Action == 0 || Action == 1, _IRQL_requires_max_(PASSIVE_LEVEL))
|
|
FORCEINLINE
|
|
VOID
|
|
WdfIoTargetPurge(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
_Strict_type_match_
|
|
WDF_IO_TARGET_PURGE_IO_ACTION Action
|
|
)
|
|
{
|
|
((PFN_WDFIOTARGETPURGE) WdfFunctions[WdfIoTargetPurgeTableIndex])(WdfDriverGlobals, IoTarget, Action);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetGetState
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
WDF_IO_TARGET_STATE
|
|
(STDCALL *PFN_WDFIOTARGETGETSTATE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
WDF_IO_TARGET_STATE
|
|
WdfIoTargetGetState(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETGETSTATE) WdfFunctions[WdfIoTargetGetStateTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetGetDevice
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
WDFDEVICE
|
|
(STDCALL *PFN_WDFIOTARGETGETDEVICE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
WDFDEVICE
|
|
WdfIoTargetGetDevice(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETGETDEVICE) WdfFunctions[WdfIoTargetGetDeviceTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetQueryTargetProperty
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETQUERYTARGETPROPERTY)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
DEVICE_REGISTRY_PROPERTY DeviceProperty,
|
|
_In_
|
|
ULONG BufferLength,
|
|
_When_(BufferLength != 0, _Out_writes_bytes_to_opt_(BufferLength, *ResultLength))
|
|
_When_(BufferLength == 0, _Out_opt_)
|
|
PVOID PropertyBuffer,
|
|
_Deref_out_range_(<=,BufferLength)
|
|
PULONG ResultLength
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetQueryTargetProperty(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
DEVICE_REGISTRY_PROPERTY DeviceProperty,
|
|
_In_
|
|
ULONG BufferLength,
|
|
_When_(BufferLength != 0, _Out_writes_bytes_to_opt_(BufferLength, *ResultLength))
|
|
_When_(BufferLength == 0, _Out_opt_)
|
|
PVOID PropertyBuffer,
|
|
_Deref_out_range_(<=,BufferLength)
|
|
PULONG ResultLength
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETQUERYTARGETPROPERTY) WdfFunctions[WdfIoTargetQueryTargetPropertyTableIndex])(WdfDriverGlobals, IoTarget, DeviceProperty, BufferLength, PropertyBuffer, ResultLength);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetAllocAndQueryTargetProperty
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETALLOCANDQUERYTARGETPROPERTY)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
DEVICE_REGISTRY_PROPERTY DeviceProperty,
|
|
_In_
|
|
_Strict_type_match_
|
|
POOL_TYPE PoolType,
|
|
_In_opt_
|
|
PWDF_OBJECT_ATTRIBUTES PropertyMemoryAttributes,
|
|
_Out_
|
|
WDFMEMORY* PropertyMemory
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetAllocAndQueryTargetProperty(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
DEVICE_REGISTRY_PROPERTY DeviceProperty,
|
|
_In_
|
|
_Strict_type_match_
|
|
POOL_TYPE PoolType,
|
|
_In_opt_
|
|
PWDF_OBJECT_ATTRIBUTES PropertyMemoryAttributes,
|
|
_Out_
|
|
WDFMEMORY* PropertyMemory
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETALLOCANDQUERYTARGETPROPERTY) WdfFunctions[WdfIoTargetAllocAndQueryTargetPropertyTableIndex])(WdfDriverGlobals, IoTarget, DeviceProperty, PoolType, PropertyMemoryAttributes, PropertyMemory);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetQueryForInterface
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETQUERYFORINTERFACE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
LPCGUID InterfaceType,
|
|
_Out_
|
|
PINTERFACE Interface,
|
|
_In_
|
|
USHORT Size,
|
|
_In_
|
|
USHORT Version,
|
|
_In_opt_
|
|
PVOID InterfaceSpecificData
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetQueryForInterface(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
LPCGUID InterfaceType,
|
|
_Out_
|
|
PINTERFACE Interface,
|
|
_In_
|
|
USHORT Size,
|
|
_In_
|
|
USHORT Version,
|
|
_In_opt_
|
|
PVOID InterfaceSpecificData
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETQUERYFORINTERFACE) WdfFunctions[WdfIoTargetQueryForInterfaceTableIndex])(WdfDriverGlobals, IoTarget, InterfaceType, Interface, Size, Version, InterfaceSpecificData);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetWdmGetTargetDeviceObject
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
PDEVICE_OBJECT
|
|
(STDCALL *PFN_WDFIOTARGETWDMGETTARGETDEVICEOBJECT)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
PDEVICE_OBJECT
|
|
WdfIoTargetWdmGetTargetDeviceObject(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETWDMGETTARGETDEVICEOBJECT) WdfFunctions[WdfIoTargetWdmGetTargetDeviceObjectTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetWdmGetTargetPhysicalDevice
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
PDEVICE_OBJECT
|
|
(STDCALL *PFN_WDFIOTARGETWDMGETTARGETPHYSICALDEVICE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
PDEVICE_OBJECT
|
|
WdfIoTargetWdmGetTargetPhysicalDevice(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETWDMGETTARGETPHYSICALDEVICE) WdfFunctions[WdfIoTargetWdmGetTargetPhysicalDeviceTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetWdmGetTargetFileObject
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
PFILE_OBJECT
|
|
(STDCALL *PFN_WDFIOTARGETWDMGETTARGETFILEOBJECT)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
PFILE_OBJECT
|
|
WdfIoTargetWdmGetTargetFileObject(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETWDMGETTARGETFILEOBJECT) WdfFunctions[WdfIoTargetWdmGetTargetFileObjectTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetWdmGetTargetFileHandle
|
|
//
|
|
typedef
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
HANDLE
|
|
(STDCALL *PFN_WDFIOTARGETWDMGETTARGETFILEHANDLE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
);
|
|
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
HANDLE
|
|
WdfIoTargetWdmGetTargetFileHandle(
|
|
_In_
|
|
WDFIOTARGET IoTarget
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETWDMGETTARGETFILEHANDLE) WdfFunctions[WdfIoTargetWdmGetTargetFileHandleTableIndex])(WdfDriverGlobals, IoTarget);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetSendReadSynchronously
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETSENDREADSYNCHRONOUSLY)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OutputBuffer,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesRead
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetSendReadSynchronously(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OutputBuffer,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesRead
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETSENDREADSYNCHRONOUSLY) WdfFunctions[WdfIoTargetSendReadSynchronouslyTableIndex])(WdfDriverGlobals, IoTarget, Request, OutputBuffer, DeviceOffset, RequestOptions, BytesRead);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetFormatRequestForRead
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETFORMATREQUESTFORREAD)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
WDFMEMORY OutputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OutputBufferOffset,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetFormatRequestForRead(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
WDFMEMORY OutputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OutputBufferOffset,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETFORMATREQUESTFORREAD) WdfFunctions[WdfIoTargetFormatRequestForReadTableIndex])(WdfDriverGlobals, IoTarget, Request, OutputBuffer, OutputBufferOffset, DeviceOffset);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetSendWriteSynchronously
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETSENDWRITESYNCHRONOUSLY)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR InputBuffer,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesWritten
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetSendWriteSynchronously(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR InputBuffer,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesWritten
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETSENDWRITESYNCHRONOUSLY) WdfFunctions[WdfIoTargetSendWriteSynchronouslyTableIndex])(WdfDriverGlobals, IoTarget, Request, InputBuffer, DeviceOffset, RequestOptions, BytesWritten);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetFormatRequestForWrite
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETFORMATREQUESTFORWRITE)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
WDFMEMORY InputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET InputBufferOffset,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetFormatRequestForWrite(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_opt_
|
|
WDFMEMORY InputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET InputBufferOffset,
|
|
_In_opt_
|
|
PLONGLONG DeviceOffset
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETFORMATREQUESTFORWRITE) WdfFunctions[WdfIoTargetFormatRequestForWriteTableIndex])(WdfDriverGlobals, IoTarget, Request, InputBuffer, InputBufferOffset, DeviceOffset);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetSendIoctlSynchronously
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETSENDIOCTLSYNCHRONOUSLY)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR InputBuffer,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OutputBuffer,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesReturned
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetSendIoctlSynchronously(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR InputBuffer,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OutputBuffer,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesReturned
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETSENDIOCTLSYNCHRONOUSLY) WdfFunctions[WdfIoTargetSendIoctlSynchronouslyTableIndex])(WdfDriverGlobals, IoTarget, Request, IoctlCode, InputBuffer, OutputBuffer, RequestOptions, BytesReturned);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetFormatRequestForIoctl
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETFORMATREQUESTFORIOCTL)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
WDFMEMORY InputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET InputBufferOffset,
|
|
_In_opt_
|
|
WDFMEMORY OutputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OutputBufferOffset
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetFormatRequestForIoctl(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
WDFMEMORY InputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET InputBufferOffset,
|
|
_In_opt_
|
|
WDFMEMORY OutputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OutputBufferOffset
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETFORMATREQUESTFORIOCTL) WdfFunctions[WdfIoTargetFormatRequestForIoctlTableIndex])(WdfDriverGlobals, IoTarget, Request, IoctlCode, InputBuffer, InputBufferOffset, OutputBuffer, OutputBufferOffset);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetSendInternalIoctlSynchronously
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETSENDINTERNALIOCTLSYNCHRONOUSLY)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR InputBuffer,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OutputBuffer,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesReturned
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetSendInternalIoctlSynchronously(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR InputBuffer,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OutputBuffer,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesReturned
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETSENDINTERNALIOCTLSYNCHRONOUSLY) WdfFunctions[WdfIoTargetSendInternalIoctlSynchronouslyTableIndex])(WdfDriverGlobals, IoTarget, Request, IoctlCode, InputBuffer, OutputBuffer, RequestOptions, BytesReturned);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetFormatRequestForInternalIoctl
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETFORMATREQUESTFORINTERNALIOCTL)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
WDFMEMORY InputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET InputBufferOffset,
|
|
_In_opt_
|
|
WDFMEMORY OutputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OutputBufferOffset
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetFormatRequestForInternalIoctl(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
WDFMEMORY InputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET InputBufferOffset,
|
|
_In_opt_
|
|
WDFMEMORY OutputBuffer,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OutputBufferOffset
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETFORMATREQUESTFORINTERNALIOCTL) WdfFunctions[WdfIoTargetFormatRequestForInternalIoctlTableIndex])(WdfDriverGlobals, IoTarget, Request, IoctlCode, InputBuffer, InputBufferOffset, OutputBuffer, OutputBufferOffset);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetSendInternalIoctlOthersSynchronously
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETSENDINTERNALIOCTLOTHERSSYNCHRONOUSLY)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OtherArg1,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OtherArg2,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OtherArg4,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesReturned
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(PASSIVE_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetSendInternalIoctlOthersSynchronously(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_opt_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OtherArg1,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OtherArg2,
|
|
_In_opt_
|
|
PWDF_MEMORY_DESCRIPTOR OtherArg4,
|
|
_In_opt_
|
|
PWDF_REQUEST_SEND_OPTIONS RequestOptions,
|
|
_Out_opt_
|
|
PULONG_PTR BytesReturned
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETSENDINTERNALIOCTLOTHERSSYNCHRONOUSLY) WdfFunctions[WdfIoTargetSendInternalIoctlOthersSynchronouslyTableIndex])(WdfDriverGlobals, IoTarget, Request, IoctlCode, OtherArg1, OtherArg2, OtherArg4, RequestOptions, BytesReturned);
|
|
}
|
|
|
|
//
|
|
// WDF Function: WdfIoTargetFormatRequestForInternalIoctlOthers
|
|
//
|
|
typedef
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
WDFAPI
|
|
NTSTATUS
|
|
(STDCALL *PFN_WDFIOTARGETFORMATREQUESTFORINTERNALIOCTLOTHERS)(
|
|
_In_
|
|
PWDF_DRIVER_GLOBALS DriverGlobals,
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
WDFMEMORY OtherArg1,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OtherArg1Offset,
|
|
_In_opt_
|
|
WDFMEMORY OtherArg2,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OtherArg2Offset,
|
|
_In_opt_
|
|
WDFMEMORY OtherArg4,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OtherArg4Offset
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
|
FORCEINLINE
|
|
NTSTATUS
|
|
WdfIoTargetFormatRequestForInternalIoctlOthers(
|
|
_In_
|
|
WDFIOTARGET IoTarget,
|
|
_In_
|
|
WDFREQUEST Request,
|
|
_In_
|
|
ULONG IoctlCode,
|
|
_In_opt_
|
|
WDFMEMORY OtherArg1,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OtherArg1Offset,
|
|
_In_opt_
|
|
WDFMEMORY OtherArg2,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OtherArg2Offset,
|
|
_In_opt_
|
|
WDFMEMORY OtherArg4,
|
|
_In_opt_
|
|
PWDFMEMORY_OFFSET OtherArg4Offset
|
|
)
|
|
{
|
|
return ((PFN_WDFIOTARGETFORMATREQUESTFORINTERNALIOCTLOTHERS) WdfFunctions[WdfIoTargetFormatRequestForInternalIoctlOthersTableIndex])(WdfDriverGlobals, IoTarget, Request, IoctlCode, OtherArg1, OtherArg1Offset, OtherArg2, OtherArg2Offset, OtherArg4, OtherArg4Offset);
|
|
}
|
|
|
|
|
|
|
|
#endif // (NTDDI_VERSION >= NTDDI_WIN2K)
|
|
|
|
|
|
|
|
WDF_EXTERN_C_END
|
|
|
|
#endif // _WDFIOTARGET_H_
|
|
|