PEP_WORK - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// pep_x.h

typedef struct _PEP_WORK {
  [out] PPEP_WORK_INFORMATION WorkInformation;
  [out] BOOLEAN               NeedWork;
} PEP_WORK, *PPEP_WORK;
View the official Windows Driver Kit DDI reference
// pepfx.h

typedef struct _PEP_WORK {
  [out] PPEP_WORK_INFORMATION WorkInformation;
  [out] BOOLEAN               NeedWork;
} PEP_WORK, *PPEP_WORK;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-pep_x-_pep_work)

_PEP_WORK structure (pep_x.h)

Description

The PEP_WORK structure indicates whether the PEP has a work request to submit to the Windows power management framework (PoFx).

Members

WorkInformation [out]

A pointer to a PEP-allocated PEP_WORK_INFORMATION structure that describes the work that the PEP is requesting. If NeedWork is TRUE, WorkInformation must point to a valid PEP_WORK_INFORMATION structure. If NeedWork is FALSE, WorkInformation must be NULL.

NeedWork [out]

Whether the PEP has a work request to submit. Set this member to TRUE if the PEP has a work request, or to FALSE if the PEP has no work to request.

Remarks

This structure is used by the PEP_DPM_WORK notification. Both members of the structure contain values that the PEP writes to the structure in response to this notification.

See also

PEP_DPM_WORK

PEP_WORK_INFORMATION


Windows Driver Kit DDI reference (ns-pepfx-_pep_work)

_PEP_WORK structure (pepfx.h)

Description

The PEP_WORK structure indicates whether the PEP has a work request to submit to the Windows power management framework (PoFx).

Members

WorkInformation [out]

A pointer to a PEP-allocated PEP_WORK_INFORMATION structure that describes the work that the PEP is requesting. If NeedWork is TRUE, WorkInformation must point to a valid PEP_WORK_INFORMATION structure. If NeedWork is FALSE, WorkInformation must be NULL.

NeedWork [out]

Whether the PEP has a work request to submit. Set this member to TRUE if the PEP has a work request, or to FALSE if the PEP has no work to request.

Remarks

This structure is used by the PEP_DPM_WORK notification. Both members of the structure contain values that the PEP writes to the structure in response to this notification.

See also

PEP_DPM_WORK

PEP_WORK_INFORMATION