The ExtensionPropSheetPageProc function specifies an application-defined callback function that receives the address of the AddPropSheetPageProc function, which resides in the module that creates a property sheet. A property sheet extension must export the ExtensionPropSheetPageProc function.
BOOL CALLBACK ExtensionPropSheetPageProc(
LPVOID lpv, | |
LPFNADDPROPSHEETPAGE lpfnAddPropSheetPageProc, | |
LPARAM lParam | |
); |
Parameters
lpv
Pointer to an application-defined value that describes an item for which a property sheet page is to be created. This parameter can be NULL.
lpfnAddPropSheetPageProc
Pointer to the AddPropSheetPageProc function. The extension dynamic-link library (DLL) calls this function to add a page to the property sheet.
lParam
Application-defined 32-bit value.
Return Values
If the function succeeds, the return value is TRUE.
If the function fails, the return value is FALSE.
See Also