IWCWizard97Callback::AddWizard97Page method (cluadmex.h)

[This method is available for use in the operating systems specified in the Requirements section. Support for this method was removed in Windows Server 2008.]

Adds a Wizard97 property page to a Wizard97 wizard, such as the Failover Cluster Application Wizard.

Syntax

HRESULT AddWizard97Page(
  [in] LONG *hpage
);

Parameters

[in] hpage

Handle to the property page to be added.

Return value

If AddWizard97Page is not successful, it can return other HRESULT values.

Return code/value Description
NOERROR
0
The operation was successful.
E_INVALIDARG
0x80070057
The hpage parameter represents an unknown page.

Remarks

Failover Cluster Administrator extensions call the AddWizard97Page method from their IWEExtendWizard97::CreateWizard97Pages methods. Before calling AddWizard97Page, extensions must call the function CreatePropertySheetPage to retrieve a handle to pass in the hpage parameter.

To add non-Wizard97 pages, use IWCWizardCallback::AddWizardPage.

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2003 Enterprise, Windows Server 2003 Datacenter
Target Platform Windows
Header cluadmex.h

See also

IWCWizard97Callback

IWCWizardCallback::AddWizardPage

IWEExtendWizard97::CreateWizard97Pages