mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
529 B
20 lines
529 B
/*
|
|
* MLFIND.H
|
|
*
|
|
* Purpose:
|
|
* Main header file for Message Finder subsystem (MLFIND)
|
|
*
|
|
* Owner:
|
|
* David R. Fulmer
|
|
*/
|
|
|
|
// restore all finders in all MDBs in a session
|
|
STDAPI_(SCODE) ScRestoreFinders(VOID);
|
|
|
|
// create a new message finder
|
|
STDAPI_(SCODE) ScNewFinder(LPMDB pmdb, LPENTRYLIST pelToSearch,
|
|
LPSRestriction presCriteria, ULONG ulSearchFlags,
|
|
int ncmdShow);
|
|
|
|
// the real work of a finder - called from the central msmail dispatch
|
|
STDAPI_(VOID) DoFinder(MFOPT *pmfopt, MAILWINDOWINFO * pmwi);
|