다음을 통해 공유


OPLOCK_NOTIFY_PARAMS 구조체(ntifs.h)

OPLOCK_NOTIFY_PARAMS 구조체는 FsRtlCheckOplockEx2콜백이 제공될 때 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