123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #include <new>
- #include <kopano/platform.h>
- #include <kopano/memory.hpp>
- #include <kopano/ECInterfaceDefs.h>
- #include "ECFreeBusySupport.h"
- #include "ECFreeBusyUpdate.h"
- #include "ECFreeBusyData.h"
- #include <kopano/CommonUtil.h>
- #include <kopano/mapiext.h>
- #include <mapiutil.h>
- #include "freebusyutil.h"
- #include <kopano/mapi_ptr.h>
- using namespace KCHL;
- namespace KC {
- ECFreeBusySupport::ECFreeBusySupport(void)
- {
- GetClientVersion(&m_ulOutlookVersion);
- }
- ECFreeBusySupport::~ECFreeBusySupport(void)
- {
- if(m_lpFreeBusyFolder)
- m_lpFreeBusyFolder->Release();
- if(m_lpUserStore)
- m_lpUserStore->Release();
- if(m_lpPublicStore)
- m_lpPublicStore->Release();
- if(m_lpSession)
- m_lpSession->Release();
- }
- HRESULT ECFreeBusySupport::Create(ECFreeBusySupport **lppECFreeBusySupport)
- {
- HRESULT hr = hrSuccess;
- auto lpECFreeBusySupport = new(std::nothrow) ECFreeBusySupport;
- if (lpECFreeBusySupport == nullptr)
- return MAPI_E_NOT_ENOUGH_MEMORY;
- hr = lpECFreeBusySupport->QueryInterface(IID_ECFreeBusySupport, (void **)lppECFreeBusySupport);
- if(hr != hrSuccess)
- delete lpECFreeBusySupport;
- return hr;
- }
- HRESULT ECFreeBusySupport::QueryInterface(REFIID refiid, void **lppInterface)
- {
- REGISTER_INTERFACE2(ECFreeBusySupport, this);
- REGISTER_INTERFACE2(ECUnknown, this);
- if (m_ulOutlookVersion == CLIENT_VERSION_OLK2000) {
- REGISTER_INTERFACE(IID_IFreeBusySupport, &this->m_xFreeBusySupportOutlook2000);
- REGISTER_INTERFACE2(IUnknown, &this->m_xFreeBusySupportOutlook2000);
- } else {
- REGISTER_INTERFACE2(IFreeBusySupport, &this->m_xFreeBusySupport);
- REGISTER_INTERFACE2(IUnknown, &this->m_xFreeBusySupport);
- }
- return MAPI_E_INTERFACE_NOT_SUPPORTED;
- }
- HRESULT ECFreeBusySupport::Open(IMAPISession* lpMAPISession, IMsgStore* lpMsgStore, BOOL bStore)
- {
- HRESULT hr = hrSuccess;
- object_ptr<IMsgStore> lpPublicStore;
- if(lpMAPISession == NULL)
- return MAPI_E_INVALID_OBJECT;
- #ifdef DEBUG
- if (lpMsgStore) {
- memory_ptr<SPropValue> lpPropArray;
- HrGetOneProp(lpMsgStore, PR_DISPLAY_NAME_A, &lpPropArray);
- TRACE_MAPI(TRACE_ENTRY, "ECFreeBusySupport::Open", "Storename=%s", (lpPropArray && lpPropArray->ulPropTag == PR_DISPLAY_NAME_A) ? lpPropArray->Value.lpszA : "Error");
- }
- #endif
- // Hold the mapisession, the session will be released by function 'close' or
- // on delete the class
- hr = lpMAPISession->QueryInterface(IID_IMAPISession, (void**)&m_lpSession);
- if(hr != hrSuccess)
- return hr;
- // Open the public store for communicate with the freebusy information.
- hr = HrOpenECPublicStoreOnline(lpMAPISession, &~lpPublicStore);
- if(hr != hrSuccess)
- return hr;
- hr = lpPublicStore->QueryInterface(IID_IMsgStore, (void**)&m_lpPublicStore);
- if(hr != hrSuccess)
- return hr;
- if(lpMsgStore) {
- //Hold the use store for update freebusy
- hr = lpMsgStore->QueryInterface(IID_IMsgStore, (void**)&m_lpUserStore);
- if(hr != hrSuccess)
- return hr;
- }
- return hr;
- }
- HRESULT ECFreeBusySupport::Close()
- {
- if(m_lpSession)
- {
- m_lpSession->Release();
- m_lpSession = NULL;
- }
- if(m_lpPublicStore)
- {
- m_lpPublicStore->Release();
- m_lpPublicStore = NULL;
- }
- if(m_lpUserStore)
- {
- m_lpUserStore->Release();
- m_lpUserStore = NULL;
- }
- return S_OK;
- }
- HRESULT ECFreeBusySupport::LoadFreeBusyData(ULONG cMax, FBUser *rgfbuser, IFreeBusyData **prgfbdata, HRESULT *phrStatus, ULONG *pcRead)
- {
- HRESULT hr = S_OK;
- ULONG ulFindUsers = 0;
- ECFBBlockList fbBlockList;
- LONG rtmStart = 0;
- LONG rtmEnd = 0;
- ULONG i;
- if((cMax > 0 && rgfbuser == NULL) || prgfbdata == NULL)
- return MAPI_E_INVALID_PARAMETER;
- for (i = 0; i < cMax; ++i) {
- object_ptr<IMessage> lpMessage;
- if (GetFreeBusyMessage(m_lpSession, m_lpPublicStore, nullptr, rgfbuser[i].m_cbEid, rgfbuser[i].m_lpEid, false, &~lpMessage) == hrSuccess) {
- object_ptr<ECFreeBusyData> lpECFreeBusyData;
- ECFreeBusyData::Create(&~lpECFreeBusyData);
- fbBlockList.Clear();
- hr = GetFreeBusyMessageData(lpMessage, &rtmStart, &rtmEnd, &fbBlockList);
- if(hr != hrSuccess)
- return hr;
- // Add fbdata
- lpECFreeBusyData->Init(rtmStart, rtmEnd, &fbBlockList);
- hr = lpECFreeBusyData->QueryInterface(IID_IFreeBusyData, (void**)&prgfbdata[i]);
- if(hr != hrSuccess)
- return hr;
- ++ulFindUsers;
- }// else No free busy information, gives the empty class
- else
- prgfbdata[i] = NULL;
- }
- if(pcRead)
- *pcRead = ulFindUsers;
- return hr;
- }
- HRESULT ECFreeBusySupport::LoadFreeBusyUpdate(ULONG cUsers, FBUser *lpUsers, IFreeBusyUpdate **lppFBUpdate, ULONG *lpcFBUpdate, void *lpData4)
- {
- TRACE_MAPI(TRACE_ENTRY, "ECFreeBusySupport::LoadFreeBusyUpdate", "cUsers=%d", cUsers);
- HRESULT hr = hrSuccess;
- ULONG cFBUpdate = 0;
- if((cUsers > 0 && lpUsers == NULL) || lppFBUpdate == NULL)
- return MAPI_E_INVALID_PARAMETER;
- for (unsigned int i = 0; i < cUsers; ++i) {
- object_ptr<IMessage> lpMessage;
- // Get the FB message, is not exist create them
- hr = GetFreeBusyMessage(m_lpSession, m_lpPublicStore, m_lpUserStore, lpUsers[i].m_cbEid, lpUsers[i].m_lpEid, true, &~lpMessage);
- if (hr != hrSuccess)
- {
- lppFBUpdate[i] = NULL;//FIXME: what todo with this?
- continue;
- }
- object_ptr<ECFreeBusyUpdate> lpECFBUpdate;
- hr = ECFreeBusyUpdate::Create(lpMessage, &~lpECFBUpdate);
- if(hr != hrSuccess)
- return hr;
- hr = lpECFBUpdate->QueryInterface(IID_IFreeBusyUpdate, (void**)&lppFBUpdate[i]);
- if(hr != hrSuccess)
- return hr;
- ++cFBUpdate;
- }
- if(lpcFBUpdate)
- *lpcFBUpdate = cFBUpdate;
- return hr;
- }
- HRESULT ECFreeBusySupport::GetDelegateInfoEx(FBUser sFBUser, unsigned int *lpulStatus, unsigned int *lpulStart, unsigned int *lpulEnd)
- {
- HRESULT hr = hrSuccess;
- object_ptr<IFreeBusyData> lpFBData;
- HRESULT ulStatus = 0;
- ULONG ulRead = 0;
- struct StatusOL2K3 {
- ULONG ulResourceType; /* 0x68410003 PR_SCHDINFO_RESOURCE_TYPE always 0*/
- ULONG ulReserved1; /* always 1? olk 2007 = 0 */
- char **lppszFullname; /* PR_MAILBOX_OWNER_NAME, but allocation method is unknown */
- SBinary *lpUserEntryID; /* PR_MAILBOX_OWNER_ENTRYID, but allocation method is unknown */
- ULONG *lpUnknown4; /* pointer to NULL, -- not present in OL2K */
- ULONG ulBossWantsCopy; /* 0x6842000B PR_SCHDINFO_BOSS_WANTS_COPY always 1 */
- ULONG ulBossWantsInfo; /* 0x684B000B PR_SCHDINFO_BOSS_WANTS_INFO always 1 */
- ULONG ulDontEmailDelegates; /* 0x6843000B PR_SCHDINFO_DONT_MAIL_DELEGATES always 1 */
- ULONG fDoesAutoAccept;
- ULONG fDoesRejectRecurring;
- ULONG fDoesRejectConflict;
- ULONG ulReserved11; /* always 0 -- unknown -- not present in OL2K */
- } *lpStatusOlk2k3;
- struct StatusOL2K7 {
- ULONG ulResourceType; /* 0x68410003 PR_SCHDINFO_RESOURCE_TYPE always 0*/
- ULONG ulReserved1; /* always 1? olk 2007 = 0 */
- char **lppszFullname; /* PR_MAILBOX_OWNER_NAME, but allocation method is unknown */
- SBinary *lpUserEntryID; /* PR_MAILBOX_OWNER_ENTRYID, but allocation method is unknown */
- ULONG *lpUnknown4; /* pointer to NULL, -- not present in OL2K */
- ULONG ulBossWantsCopy; /* 0x6842000B PR_SCHDINFO_BOSS_WANTS_COPY always 1 */
- ULONG ulBossWantsInfo; /* 0x684B000B PR_SCHDINFO_BOSS_WANTS_INFO always 1 */
- ULONG ulDontEmailDelegates; /* 0x6843000B PR_SCHDINFO_DONT_MAIL_DELEGATES always 1 */
- ULONG ulReserved11; /* always 0 -- unknown -- not present in OL2K */
- ULONG fDoesAutoAccept;
- ULONG fDoesRejectRecurring;
- ULONG fDoesRejectConflict;
- } *lpStatus;
- struct StatusOL2K {
- ULONG ulResourceType; /* always 0 */
- ULONG ulReserved1; /* always 1 */
- char **lppszFullname; /* PR_MAILBOX_OWNER_NAME, but allocation method is unknown */
- SBinary *lpUserEntryID; /* PR_MAILBOX_OWNER_ENTRYID, but allocation method is unknown */
- ULONG ulBossWantsCopy; /* always 1 */
- ULONG ulBossWantsInfo; /* always 1 */
- ULONG ulDontEmailDelegates; /* always 1 */
- ULONG fDoesAutoAccept;
- ULONG fDoesRejectRecurring;
- ULONG fDoesRejectConflict;
- } *lpStatusOlk2K;
- bool bAutoAccept = true, bDeclineConflict = true, bDeclineRecurring = true;
- ULONG ulObjType = 0;
- MailUserPtr ptrUser;
- MsgStorePtr ptrStore;
- SPropValuePtr ptrName;
- if (m_lpSession->OpenEntry(sFBUser.m_cbEid, sFBUser.m_lpEid, nullptr, 0, &ulObjType, &~ptrUser) == hrSuccess &&
- HrGetOneProp(ptrUser, PR_ACCOUNT, &~ptrName) == hrSuccess &&
- HrOpenUserMsgStore(m_lpSession, ptrName->Value.LPSZ, &~ptrStore) == hrSuccess)
- {
- GetAutoAcceptSettings(ptrStore, &bAutoAccept, &bDeclineConflict, &bDeclineRecurring);
- // ignore error, default true.
- hr = hrSuccess;
- }
- switch (m_ulOutlookVersion) {
- case CLIENT_VERSION_OLK2000:
- case CLIENT_VERSION_OLK2002:
- lpStatusOlk2K = (StatusOL2K*)lpulStatus;
- memset(lpStatusOlk2K, 0, sizeof(StatusOL2K));
- lpStatusOlk2K->ulReserved1 = 1;
- lpStatusOlk2K->ulBossWantsCopy = 0; // WARNING Outlook will crash if it will be enabled (1)!
- lpStatusOlk2K->ulBossWantsInfo = 1;
- lpStatusOlk2K->ulDontEmailDelegates = 1;
- // They don't seem to have much effect, as outlook will always plan the resource.
- lpStatusOlk2K->fDoesAutoAccept = bAutoAccept;
- lpStatusOlk2K->fDoesRejectConflict = bDeclineConflict;
- lpStatusOlk2K->fDoesRejectRecurring = bDeclineRecurring;
- break;
- case CLIENT_VERSION_OLK2003:
- lpStatusOlk2k3 = (StatusOL2K3*)lpulStatus;
- memset(lpStatusOlk2k3, 0, sizeof(StatusOL2K3));
- lpStatusOlk2k3->ulReserved1 = 0;
- lpStatusOlk2k3->ulBossWantsCopy = 0; // WARNING Outlook will crash if it will be enabled (1)!
- lpStatusOlk2k3->ulBossWantsInfo = 1;
- lpStatusOlk2k3->ulDontEmailDelegates = 1;
- lpStatusOlk2k3->fDoesAutoAccept = bAutoAccept;
- lpStatusOlk2k3->fDoesRejectConflict = bDeclineConflict;
- lpStatusOlk2k3->fDoesRejectRecurring = bDeclineRecurring;
- break;
- default:
- lpStatus = (StatusOL2K7*)lpulStatus;
- memset(lpStatus, 0, sizeof(StatusOL2K7));
- lpStatus->ulReserved1 = 0;
- lpStatus->ulBossWantsCopy = 0; // WARNING Outlook will crash if it will be enabled (1)!
- lpStatus->ulBossWantsInfo = 1;
- lpStatus->ulDontEmailDelegates = 1;
- // Atleast Outlook 2007 should be able to correctly use these, if you restart outlook.
- lpStatus->fDoesAutoAccept = bAutoAccept;
- lpStatus->fDoesRejectConflict = bDeclineConflict;
- lpStatus->fDoesRejectRecurring = bDeclineRecurring;
- break;
- };
- // These two dates seem to be the published range in RTimes for the specified user. However, just specifying zero
- // doesn't seem to matter when booking resources, so it looks like these values are ignored.
- // We'll get the values anyway just to be sure.
- hr = LoadFreeBusyData(1, &sFBUser, &~lpFBData, &ulStatus, &ulRead);
- if(hr != hrSuccess)
- return hr;
- if (ulRead != 1)
- return MAPI_E_NOT_FOUND;
- return lpFBData->GetFBPublishRange((LONG *)lpulStart, (LONG *)lpulEnd);
- // if an error is returned, outlook will send an email to the resource.
- // PR_LAST_VERB_EXECUTED (ulong) will be set to 516, so outlook knows modifications need to be mailed too.
- }
- // IUnknown
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, QueryInterface, (REFIID, refiid), (void**, lppInterface))
- DEF_ULONGMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, AddRef, (void))
- DEF_ULONGMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, Release, (void))
- // IFreeBusySupport
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, Open, (IMAPISession*, lpMAPISession), (IMsgStore*, lpMsgStore), (BOOL, bStore))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, Close, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, LoadFreeBusyData, (ULONG, cMax), (FBUser *, rgfbuser), (IFreeBusyData **, prgfbdata), (HRESULT *, phrStatus), (ULONG *, pcRead))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, LoadFreeBusyUpdate, (ULONG, cUsers), (FBUser *, lpUsers), (IFreeBusyUpdate **, lppFBUpdate), (ULONG *, lpcFBUpdate), (void *, lpData4))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, CommitChanges, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, GetDelegateInfo, (FBUser, fbUser), (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, SetDelegateInfo, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, AdviseFreeBusy, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, Reload, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, GetFBDetailSupport, (void **, lppData), (BOOL, bData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, HrHandleServerSched, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, HrHandleServerSchedAccess, (void))
- BOOL __stdcall ECFreeBusySupport::xFreeBusySupport::FShowServerSched(BOOL bData)
- {
- TRACE_MAPI(TRACE_ENTRY, "IFreeBusySupport::FShowServerSched", "");
- METHOD_PROLOGUE_(ECFreeBusySupport , FreeBusySupport);
- BOOL b = pThis->FShowServerSched(bData);
- TRACE_MAPI(TRACE_RETURN, "IFreeBusySupport::FShowServerSched", "%s", (b == TRUE)?"TRUE":"FALSE");
- return b;
- }
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, HrDeleteServerSched, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, GetFReadOnly, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, SetLocalFB, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, PrepareForSync, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, GetFBPublishMonthRange, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, PublishRangeChanged, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, CleanTombstone, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, GetDelegateInfoEx, (FBUser, fbUser), (unsigned int *, lpData1), (unsigned int *, lpData2), (unsigned int *, lpData3))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupport, PushDelegateInfoToWorkspace, (void))
- // IUnknown
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, QueryInterface, (REFIID, refiid), (void**, lppInterface))
- DEF_ULONGMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, AddRef, (void))
- DEF_ULONGMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, Release, (void))
- // IFreeBusySupport
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, Open, (IMAPISession*, lpMAPISession), (IMsgStore*, lpMsgStore), (BOOL, bStore))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, Close, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, LoadFreeBusyData, (ULONG, cMax), (FBUser *, rgfbuser), (IFreeBusyData **, prgfbdata), (HRESULT *, phrStatus), (ULONG *, pcRead))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, LoadFreeBusyUpdate, (ULONG, cUsers), (FBUser *, lpUsers), (IFreeBusyUpdate **, lppFBUpdate), (ULONG *, lpcFBUpdate), (void *, lpData4))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, CommitChanges, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, GetDelegateInfo, (FBUser, fbUser), (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, SetDelegateInfo, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, AdviseFreeBusy, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, Reload, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, GetFBDetailSupport, (void **, lppData), (BOOL, bData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, HrHandleServerSched, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, HrHandleServerSchedAccess, (void))
- BOOL __stdcall ECFreeBusySupport::xFreeBusySupportOutlook2000::FShowServerSched(BOOL bData)
- {
- TRACE_MAPI(TRACE_ENTRY, "IFreeBusySupportOutlook2000::FShowServerSched", "");
- METHOD_PROLOGUE_(ECFreeBusySupport , FreeBusySupportOutlook2000);
- BOOL b = pThis->FShowServerSched(bData);
- TRACE_MAPI(TRACE_RETURN, "IFreeBusySupportOutlook2000::FShowServerSched", "%s", (b == TRUE)?"TRUE":"FALSE");
- return b;
- }
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, HrDeleteServerSched, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, GetFReadOnly, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, SetLocalFB, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, PrepareForSync, (void))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, GetFBPublishMonthRange, (void *, lpData))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, PublishRangeChanged, (void))
- /*
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, CleanTombstone, (void))
- */
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, GetDelegateInfoEx, (FBUser, fbUser), (unsigned int *, lpData1), (unsigned int *, lpData2), (unsigned int *, lpData3))
- DEF_HRMETHOD1(TRACE_MAPI, ECFreeBusySupport, FreeBusySupportOutlook2000, PushDelegateInfoToWorkspace, (void))
- } /* namespace */
|