SaveDataProc

The SaveDataProc function saves the extension data to memory. Optional Administrator extension DLL function.

Quick Info

Header file: ADMINEXT.H
Library: ADMINEXT.LIB

BOOL SaveDataProc(
  VOID * pvExtensionData,  
  HWNDPARENT hwndParent  
);
 

Parameters

pvExtensionData
Input parameter. Points to the block of memory.
hwndParent
Input parameter. Specifies the handle of the current property sheet window.

Return Values

See Return Values.

Remarks

The Microsoft Exchange Server Administrator program calls the SaveDataProc function when the user changes a property page, clicks the OK button, or clicks the Apply button.

If the user clicks OK, the Administrator program calls SaveDataProc for each property page so the DLL can validate and save into memory the data managed by the property sheet dialog. The Administrator program then calls CommitDataProc, which should save the data in memory and place it in permanent storage.

See Also

ADMIN_Initialize, PADMIN_AddService