DISMISSMODELESS
The DISMISSMODELESS
function prototype defines a callback function that MAPI calls when it has
dismissed a modeless address book dialog box. This call is necessary so that
the client application will stop calling the accelerator function based on the ACCELERATEABSDI
function prototype
Quick Info
Header
file: |
MAPIDEFS.H |
Defined
function implemented by: |
Client
applications |
Defined
function called by: |
MAPI |
void (STDMETHODCALLTYPE DISMISSMODELESS)(
ULONG ulUIParam,
|
|
LPVOID lpvContext |
|
); |
|
Parameters
ulUIParam
[in] An
implementation-specific 32-bit value typically used for passing user interface
information to a function. For example, in Microsoft Windows this parameter is
the parent window handle for the dialog box and is of type HWND (cast to a ULONG).
A value of zero is always valid.
lpvContext
[in] Pointer
to an arbitrary value passed to the callback function when MAPI calls it. This
value can represent an address of significance to the client application.
Typically, for C++ code, lpvContext is a pointer to the address of a C++
object.
See Also
ADRPARM