SCESVC_ANALYSIS_INFO structure (scesvc.h)

The SCESVC_ANALYSIS_INFO structure contains the analysis information. It contains a SCESVC_ANALYSIS_LINE structure that contains lines of analysis information, and it also contains a counter that indicates the number of lines.

A pointer to this structure is returned by calls to PFSCE_QUERY_INFO and PFSCE_SET_INFO when analysis information is specified.

Syntax

typedef struct _SCESVC_ANALYSIS_INFO_ {
  DWORD                 Count;
  PSCESVC_ANALYSIS_LINE Lines;
} SCESVC_ANALYSIS_INFO, *PSCESVC_ANALYSIS_INFO;

Members

Count

A DWORD that indicates the number of lines in the array.

Lines

Pointer to an array of SCESVC_ANALYSIS_LINE structures which contain the analysis information.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header scesvc.h

See also

PFSCE_QUERY_INFO

PFSCE_SET_INFO

SCESVC_ANALYSIS_LINE

SCESVC_INFO_TYPE