SHAddFromPropSheetExtArray function
[This function is available through Windows XP Service Pack 2 (SP2) and Windows Server 2003. It might be altered or unavailable in subsequent versions of Windows.]
Adds pages to a property sheet extension array created by SHCreatePropSheetExtArray.
Syntax
UINT SHAddFromPropSheetExtArray( _In_ HPSXA hpsxa, _In_ LPFNADDPROPSHEETPAGE lpfnAddPage, LPARAM lParam );
Parameters
- hpsxa [in]
-
Type: HPSXA
The array of property sheet handlers returned by SHCreatePropSheetExtArray.
- lpfnAddPage [in]
-
Type: LPFNADDPROPSHEETPAGE
A pointer to an AddPropSheetPageProc callback function. It is called once for each property sheet handler. The callback function then returns the information needed to add a page to the handler's property sheet.
- lParam
-
Type: LPARAM
A pointer to application-defined data. This data is passed to the callback function specified by lpfnAddPage.
Return value
Type: UINT
Returns the number of pages actually added.
Remarks
This function should be called only once for the property sheet extension array named in hpsxa.
This function calls each extension's IShellPropSheetExt::AddPages method. See that page for further details.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
See also