OPLOCK_NOTIFY_PARAMS结构 (ntifs.h)

当向 FsRtlCheckOplockEx2提供此类回调时,OPLOCK_NOTIFY_PARAMS结构作为参数传递给 NotifyRoutine 回调。

语法

typedef struct _OPLOCK_NOTIFY_PARAMS {
  OPLOCK_NOTIFY_REASON NotifyReason;
  PVOID                NotifyContext;
  PIRP                 Irp;
  NTSTATUS             Status;
} OPLOCK_NOTIFY_PARAMS, *POPLOCK_NOTIFY_PARAMS;

成员

NotifyReason

一个 OPLOCK_NOTIFY_REASON 枚举值,该值指定通知回调的原因。

NotifyContext

设置为与 FsRtlCheckOplockEx2's NotifyContext 参数相同的值。

Irp

设置为与 FsRtlCheckOplockEx2Irp 参数相同的值。

Status

NotifyRoutine 回调返回的 NT 状态代码。 状态代码的解释取决于 NotifyReason的值。

要求

要求 价值
最低支持的客户端 Windows 10 版本 2004
标头 ntifs.h

另请参阅

FsRtlCheckOplockEx2

OPLOCK_NOTIFY_REASON