Share via


SolutionParameters structure

This structure defines configuration information for the Solution interface.

Syntax

struct SolutionParameters {
  DWORD Size;
  DWORD Flags;
};

Members

Size

The number of bytes in the structure. Used to detect different versions of structure. This must be set to sizeof( SolutionParameters ) before initializing the Solution interface with this structure.

Flags

Specifies flags that control how the Solution interface is initialized. This value can be a combination of the flags defined in the SolutionFlags enumeration.

Remarks

The Solution interface can be configured to execute assessments or workloads in different ways. Each type of application has state limitations on how it runs and how the Solution interface can interact with it. A solution application is an application that runs assessments. A solution assessment is an assessment that acts as a solution as well except that it can only run workloads, which are essentially sub-assessments. It must initialize the Support interface before it can initialize the Solution interface, and it can only initialize the Solution interface to run workloads.

Requirements

Minimum supported client
Windows 7 [desktop apps only]
Minimum supported server
Windows Server 2008 R2 [desktop apps only]
Header
AxeHosting.h

See also

SolutionFlags

SolutionError

Support