OnSSPDisable
This is an ActiveSync service provider function called when the service provider is disabled in the Activesync Options dialog box.
HRESULT WINAPI OnSSPDisable (
HWND hwndParent
);
Parameters
- hwndParent
[in] Handle for the service provider to use to parent any dialog box it displays when this function is called.
Return Values
Returns S_OK. The ActiveSync engine does not process the return value.
Remarks
The IReplStore::Initialize function may not have been called prior to this function being called. Thus the caller must not use any internal variables that depend on a prior call to IReplStore::Initialize.
Code Example
The following code example demonstrates how to use OnSSPDisable.
Note To make the following code example easier to read, security checking and error handling are not included. This code example should not be used in a release configuration unless it has been modified to include them.
HRESULT WINAPI OnSSPDisable (HWND hWndParent)
{
// The IReplStore::Initialize function might not have been called prior
// to this function being called, so you must not use internal
// variables that depend on IReplStore::Initialize being called.
MessageBox(hWndParent, _T("SSP was just disabled"), _T("My SSP"), MB_OK);
return S_OK;
}
Requirements
Pocket PC: Windows Mobile Version 5.0 and later
Smartphone: Windows Mobile Version 5.0 and later
OS Versions: Windows CE 5.01 and later.
Header: Cesync.h.
See Also
OnSSPEnable | DoOptionsDialog | Sync Service Providers (SSP) Options Dialog
Send Feedback on this topic to the authors