HOWTO: Create a RestrictionID: Q177622
|
Restrictions are used by Exchange to limit the rows returned in a table. Restrictions are used throughout the product for determining the conditions for rules, searching for messages, and for creating views of messages. This article describes how to create a restriction and provides a code example. The code provided is not complete. It assumes that you already have a handle to a MAPI session, a pointer to the message store, a pointer to the folder the rule is to be applied to, and that you will release the appropriate structures before exiting the function.
LPSRestriction lpRes = NULL;
hr = CreateRestriction(lpRes);
HRESULT CreateRestriction(LPSRestriction lpRes)
{
HRESULT hr = NULL;
// hr = HrStringToRestriction("PR_SENDER_NAME } \"Bugs Bunny\"",
// NULL ,
// &lpRes);
hr = HrStringToRestriction("PR_SUBJECT } \"Test\"",
NULL , &lpRes);
if (FAILED(hr))
{
MessageBox(NULL,"Restriction Failed",NULL,MB_OK);
return hr;
}
if (lpRes->rt = RES_CONTENT)
{
lpRes->res.resContent.ulFuzzyLevel = FL_SUBSTRING |
FL_IGNORECASE |
FL_LOOSE;
}
return hr;
}
For more information, please see the following topics in the Microsoft Developer Network Library (MSDN). These topics can be found in the Win32 Messaging (MAPI) section of the Platform SDK:
Additional query words: Restriction Restrictions HrStringToRestriction
Keywords : kbcode kbAPI kbEDK kbMsg
Version : WINDOWS:5.0
Platform : WINDOWS
Issue type : kbhowto
Last Reviewed: January 23, 1999