00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "precomp.h"
00022
00023 CCommonBrowser::CCommonBrowser()
00024 {
00025 }
00026
00027 CCommonBrowser::~CCommonBrowser()
00028 {
00029 }
00030
00031 HRESULT STDMETHODCALLTYPE CCommonBrowser::QueryService(REFGUID guidService, REFIID riid, void **ppvObject)
00032 {
00033 return E_NOTIMPL;
00034 }
00035
00036 HRESULT STDMETHODCALLTYPE CCommonBrowser::QueryStatus(const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds[ ], OLECMDTEXT *pCmdText)
00037 {
00038 return E_NOTIMPL;
00039 }
00040
00041 HRESULT STDMETHODCALLTYPE CCommonBrowser::Exec(const GUID *pguidCmdGroup, DWORD nCmdID, DWORD nCmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut)
00042 {
00043 return E_NOTIMPL;
00044 }
00045
00046 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetParentSite(IOleInPlaceSite **ppipsite)
00047 {
00048 return E_NOTIMPL;
00049 }
00050
00051 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetTitle(IShellView *psv, LPCWSTR pszName)
00052 {
00053 return E_NOTIMPL;
00054 }
00055
00056 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetTitle(IShellView *psv, LPWSTR pszName, DWORD cchName)
00057 {
00058 return E_NOTIMPL;
00059 }
00060
00061 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetOleObject(IOleObject **ppobjv)
00062 {
00063 return E_NOTIMPL;
00064 }
00065
00066 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetTravelLog(ITravelLog **pptl)
00067 {
00068 return E_NOTIMPL;
00069 }
00070
00071 HRESULT STDMETHODCALLTYPE CCommonBrowser::ShowControlWindow(UINT id, BOOL fShow)
00072 {
00073 return E_NOTIMPL;
00074 }
00075
00076 HRESULT STDMETHODCALLTYPE CCommonBrowser::IsControlWindowShown(UINT id, BOOL *pfShown)
00077 {
00078 return E_NOTIMPL;
00079 }
00080
00081 HRESULT STDMETHODCALLTYPE CCommonBrowser::IEGetDisplayName(LPCITEMIDLIST pidl, LPWSTR pwszName, UINT uFlags)
00082 {
00083 return E_NOTIMPL;
00084 }
00085
00086 HRESULT STDMETHODCALLTYPE CCommonBrowser::IEParseDisplayName(UINT uiCP, LPCWSTR pwszPath, LPCITEMIDLIST *ppidlOut)
00087 {
00088 return E_NOTIMPL;
00089 }
00090
00091 HRESULT STDMETHODCALLTYPE CCommonBrowser::DisplayParseError(HRESULT hres, LPCWSTR pwszPath)
00092 {
00093 return E_NOTIMPL;
00094 }
00095
00096 HRESULT STDMETHODCALLTYPE CCommonBrowser::NavigateToPidl(LPCITEMIDLIST pidl, DWORD grfHLNF)
00097 {
00098 return E_NOTIMPL;
00099 }
00100
00101 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetNavigateState(BNSTATE bnstate)
00102 {
00103 return E_NOTIMPL;
00104 }
00105
00106 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetNavigateState(BNSTATE *pbnstate)
00107 {
00108 return E_NOTIMPL;
00109 }
00110
00111 HRESULT STDMETHODCALLTYPE CCommonBrowser::NotifyRedirect(IShellView *psv, LPCITEMIDLIST pidl, BOOL *pfDidBrowse)
00112 {
00113 return E_NOTIMPL;
00114 }
00115
00116 HRESULT STDMETHODCALLTYPE CCommonBrowser::UpdateWindowList()
00117 {
00118 return E_NOTIMPL;
00119 }
00120
00121 HRESULT STDMETHODCALLTYPE CCommonBrowser::UpdateBackForwardState()
00122 {
00123 return E_NOTIMPL;
00124 }
00125
00126 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetFlags(DWORD dwFlags, DWORD dwFlagMask)
00127 {
00128 return E_NOTIMPL;
00129 }
00130
00131 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetFlags(DWORD *pdwFlags)
00132 {
00133 return E_NOTIMPL;
00134 }
00135
00136 HRESULT STDMETHODCALLTYPE CCommonBrowser::CanNavigateNow( void)
00137 {
00138 return E_NOTIMPL;
00139 }
00140
00141 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetPidl(LPCITEMIDLIST *ppidl)
00142 {
00143 return E_NOTIMPL;
00144 }
00145
00146 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetReferrer(LPCITEMIDLIST pidl)
00147 {
00148 return E_NOTIMPL;
00149 }
00150
00151 DWORD STDMETHODCALLTYPE CCommonBrowser::GetBrowserIndex()
00152 {
00153 return 0;
00154 }
00155
00156 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetBrowserByIndex(DWORD dwID, IUnknown **ppunk)
00157 {
00158 return E_NOTIMPL;
00159 }
00160
00161 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetHistoryObject(IOleObject **ppole, IStream **pstm, IBindCtx **ppbc)
00162 {
00163 return E_NOTIMPL;
00164 }
00165
00166 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetHistoryObject(IOleObject *pole, BOOL fIsLocalAnchor)
00167 {
00168 return E_NOTIMPL;
00169 }
00170
00171 HRESULT STDMETHODCALLTYPE CCommonBrowser::CacheOLEServer(IOleObject *pole)
00172 {
00173 return E_NOTIMPL;
00174 }
00175
00176 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetSetCodePage(VARIANT *pvarIn, VARIANT *pvarOut)
00177 {
00178 return E_NOTIMPL;
00179 }
00180
00181 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnHttpEquiv(IShellView *psv, BOOL fDone, VARIANT *pvarargIn, VARIANT *pvarargOut)
00182 {
00183 return E_NOTIMPL;
00184 }
00185
00186 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetPalette(HPALETTE *hpal)
00187 {
00188 return E_NOTIMPL;
00189 }
00190
00191 HRESULT STDMETHODCALLTYPE CCommonBrowser::RegisterWindow(BOOL fForceRegister, int swc)
00192 {
00193 return E_NOTIMPL;
00194 }
00195
00196 LRESULT STDMETHODCALLTYPE CCommonBrowser::WndProcBS(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
00197 {
00198 return 0;
00199 }
00200
00201 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetAsDefFolderSettings()
00202 {
00203 return E_NOTIMPL;
00204 }
00205
00206 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetViewRect(RECT *prc)
00207 {
00208 return E_NOTIMPL;
00209 }
00210
00211 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnSize(WPARAM wParam)
00212 {
00213 return E_NOTIMPL;
00214 }
00215
00216 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnCreate(struct tagCREATESTRUCTW *pcs)
00217 {
00218 return E_NOTIMPL;
00219 }
00220
00221 LRESULT STDMETHODCALLTYPE CCommonBrowser::OnCommand(WPARAM wParam, LPARAM lParam)
00222 {
00223 return 0;
00224 }
00225
00226 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnDestroy()
00227 {
00228 return E_NOTIMPL;
00229 }
00230
00231 LRESULT STDMETHODCALLTYPE CCommonBrowser::OnNotify(struct tagNMHDR *pnm)
00232 {
00233 return E_NOTIMPL;
00234 }
00235
00236 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnSetFocus()
00237 {
00238 return E_NOTIMPL;
00239 }
00240
00241 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnFrameWindowActivateBS(BOOL fActive)
00242 {
00243 return E_NOTIMPL;
00244 }
00245
00246 HRESULT STDMETHODCALLTYPE CCommonBrowser::ReleaseShellView()
00247 {
00248 return E_NOTIMPL;
00249 }
00250
00251 HRESULT STDMETHODCALLTYPE CCommonBrowser::ActivatePendingView()
00252 {
00253 return E_NOTIMPL;
00254 }
00255
00256 HRESULT STDMETHODCALLTYPE CCommonBrowser::CreateViewWindow(IShellView *psvNew, IShellView *psvOld, LPRECT prcView, HWND *phwnd)
00257 {
00258 return E_NOTIMPL;
00259 }
00260
00261 HRESULT STDMETHODCALLTYPE CCommonBrowser::CreateBrowserPropSheetExt(REFIID riid, void **ppv)
00262 {
00263 return E_NOTIMPL;
00264 }
00265
00266 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetViewWindow(HWND *phwndView)
00267 {
00268 return E_NOTIMPL;
00269 }
00270
00271 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetBaseBrowserData(LPCBASEBROWSERDATA *pbbd)
00272 {
00273 return E_NOTIMPL;
00274 }
00275
00276 LPBASEBROWSERDATA CCommonBrowser::PutBaseBrowserData()
00277 {
00278 return NULL;
00279 }
00280
00281 HRESULT STDMETHODCALLTYPE CCommonBrowser::InitializeTravelLog(ITravelLog *ptl, DWORD dw)
00282 {
00283 return E_NOTIMPL;
00284 }
00285
00286 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetTopBrowser()
00287 {
00288 return E_NOTIMPL;
00289 }
00290
00291 HRESULT STDMETHODCALLTYPE CCommonBrowser::Offline(int iCmd)
00292 {
00293 return E_NOTIMPL;
00294 }
00295
00296 HRESULT STDMETHODCALLTYPE CCommonBrowser::AllowViewResize(BOOL f)
00297 {
00298 return E_NOTIMPL;
00299 }
00300
00301 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetActivateState(UINT u)
00302 {
00303 return E_NOTIMPL;
00304 }
00305
00306 HRESULT STDMETHODCALLTYPE CCommonBrowser::UpdateSecureLockIcon(int eSecureLock)
00307 {
00308 return E_NOTIMPL;
00309 }
00310
00311 HRESULT STDMETHODCALLTYPE CCommonBrowser::InitializeDownloadManager()
00312 {
00313 return E_NOTIMPL;
00314 }
00315
00316 HRESULT STDMETHODCALLTYPE CCommonBrowser::InitializeTransitionSite()
00317 {
00318 return E_NOTIMPL;
00319 }
00320
00321 HRESULT STDMETHODCALLTYPE CCommonBrowser::_Initialize(HWND hwnd, IUnknown *pauto)
00322 {
00323 return E_NOTIMPL;
00324 }
00325
00326 HRESULT STDMETHODCALLTYPE CCommonBrowser::_CancelPendingNavigationAsync( void)
00327 {
00328 return E_NOTIMPL;
00329 }
00330
00331 HRESULT STDMETHODCALLTYPE CCommonBrowser::_CancelPendingView()
00332 {
00333 return E_NOTIMPL;
00334 }
00335
00336 HRESULT STDMETHODCALLTYPE CCommonBrowser::_MaySaveChanges()
00337 {
00338 return E_NOTIMPL;
00339 }
00340
00341 HRESULT STDMETHODCALLTYPE CCommonBrowser::_PauseOrResumeView(BOOL fPaused)
00342 {
00343 return E_NOTIMPL;
00344 }
00345
00346 HRESULT STDMETHODCALLTYPE CCommonBrowser::_DisableModeless()
00347 {
00348 return E_NOTIMPL;
00349 }
00350
00351 HRESULT STDMETHODCALLTYPE CCommonBrowser::_NavigateToPidl(LPCITEMIDLIST pidl, DWORD grfHLNF, DWORD dwFlags)
00352 {
00353 return E_NOTIMPL;
00354 }
00355
00356 HRESULT STDMETHODCALLTYPE CCommonBrowser::_TryShell2Rename(IShellView *psv, LPCITEMIDLIST pidlNew)
00357 {
00358 return E_NOTIMPL;
00359 }
00360
00361 HRESULT STDMETHODCALLTYPE CCommonBrowser::_SwitchActivationNow()
00362 {
00363 return E_NOTIMPL;
00364 }
00365
00366 HRESULT STDMETHODCALLTYPE CCommonBrowser::_ExecChildren(IUnknown *punkBar, BOOL fBroadcast, const GUID *pguidCmdGroup, DWORD nCmdID, DWORD nCmdexecopt, VARIANTARG *pvarargIn, VARIANTARG *pvarargOut)
00367 {
00368 return E_NOTIMPL;
00369 }
00370
00371 HRESULT STDMETHODCALLTYPE CCommonBrowser::_SendChildren(HWND hwndBar, BOOL fBroadcast, UINT uMsg, WPARAM wParam, LPARAM lParam)
00372 {
00373 return E_NOTIMPL;
00374 }
00375
00376 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetFolderSetData(struct tagFolderSetData *pfsd)
00377 {
00378 return E_NOTIMPL;
00379 }
00380
00381 HRESULT STDMETHODCALLTYPE CCommonBrowser::_OnFocusChange(UINT itb)
00382 {
00383 return E_NOTIMPL;
00384 }
00385
00386 HRESULT STDMETHODCALLTYPE CCommonBrowser::v_ShowHideChildWindows(BOOL fChildOnly)
00387 {
00388 return E_NOTIMPL;
00389 }
00390
00391 UINT STDMETHODCALLTYPE CCommonBrowser::_get_itbLastFocus()
00392 {
00393 return E_NOTIMPL;
00394 }
00395
00396 HRESULT STDMETHODCALLTYPE CCommonBrowser::_put_itbLastFocus(UINT itbLastFocus)
00397 {
00398 return E_NOTIMPL;
00399 }
00400
00401 HRESULT STDMETHODCALLTYPE CCommonBrowser::_UIActivateView(UINT uState)
00402 {
00403 return E_NOTIMPL;
00404 }
00405
00406 HRESULT STDMETHODCALLTYPE CCommonBrowser::_GetViewBorderRect(RECT *prc)
00407 {
00408 return E_NOTIMPL;
00409 }
00410
00411 HRESULT STDMETHODCALLTYPE CCommonBrowser::_UpdateViewRectSize()
00412 {
00413 return E_NOTIMPL;
00414 }
00415
00416 HRESULT STDMETHODCALLTYPE CCommonBrowser::_ResizeNextBorder(UINT itb)
00417 {
00418 return E_NOTIMPL;
00419 }
00420
00421 HRESULT STDMETHODCALLTYPE CCommonBrowser::_ResizeView()
00422 {
00423 return E_NOTIMPL;
00424 }
00425
00426 HRESULT STDMETHODCALLTYPE CCommonBrowser::_GetEffectiveClientArea(LPRECT lprectBorder, HMONITOR hmon)
00427 {
00428 return E_NOTIMPL;
00429 }
00430
00431 IStream *STDMETHODCALLTYPE CCommonBrowser::v_GetViewStream(LPCITEMIDLIST pidl, DWORD grfMode, LPCWSTR pwszName)
00432 {
00433 return NULL;
00434 }
00435
00436 LRESULT STDMETHODCALLTYPE CCommonBrowser::ForwardViewMsg(UINT uMsg, WPARAM wParam, LPARAM lParam)
00437 {
00438 return E_NOTIMPL;
00439 }
00440
00441 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetAcceleratorMenu(HACCEL hacc)
00442 {
00443 return E_NOTIMPL;
00444 }
00445
00446 int STDMETHODCALLTYPE CCommonBrowser::_GetToolbarCount()
00447 {
00448 return 0;
00449 }
00450
00451 LPTOOLBARITEM STDMETHODCALLTYPE CCommonBrowser::_GetToolbarItem(int itb)
00452 {
00453 return NULL;
00454 }
00455
00456 HRESULT STDMETHODCALLTYPE CCommonBrowser::_SaveToolbars(IStream *pstm)
00457 {
00458 return E_NOTIMPL;
00459 }
00460
00461 HRESULT STDMETHODCALLTYPE CCommonBrowser::_LoadToolbars(IStream *pstm)
00462 {
00463 return E_NOTIMPL;
00464 }
00465
00466 HRESULT STDMETHODCALLTYPE CCommonBrowser::_CloseAndReleaseToolbars(BOOL fClose)
00467 {
00468 return E_NOTIMPL;
00469 }
00470
00471 HRESULT STDMETHODCALLTYPE CCommonBrowser::v_MayGetNextToolbarFocus(LPMSG lpMsg, UINT itbNext, int citb, LPTOOLBARITEM *pptbi, HWND *phwnd)
00472 {
00473 return E_NOTIMPL;
00474 }
00475
00476 HRESULT STDMETHODCALLTYPE CCommonBrowser::_ResizeNextBorderHelper(UINT itb, BOOL bUseHmonitor)
00477 {
00478 return E_NOTIMPL;
00479 }
00480
00481 UINT STDMETHODCALLTYPE CCommonBrowser::_FindTBar(IUnknown *punkSrc)
00482 {
00483 return E_NOTIMPL;
00484 }
00485
00486 HRESULT STDMETHODCALLTYPE CCommonBrowser::_SetFocus(LPTOOLBARITEM ptbi, HWND hwnd, LPMSG lpMsg)
00487 {
00488 return E_NOTIMPL;
00489 }
00490
00491 HRESULT STDMETHODCALLTYPE CCommonBrowser::v_MayTranslateAccelerator(MSG *pmsg)
00492 {
00493 return E_NOTIMPL;
00494 }
00495
00496 HRESULT STDMETHODCALLTYPE CCommonBrowser::_GetBorderDWHelper(IUnknown *punkSrc, LPRECT lprectBorder, BOOL bUseHmonitor)
00497 {
00498 return E_NOTIMPL;
00499 }
00500
00501 HRESULT STDMETHODCALLTYPE CCommonBrowser::v_CheckZoneCrossing(LPCITEMIDLIST pidl)
00502 {
00503 return E_NOTIMPL;
00504 }
00505
00506 HRESULT STDMETHODCALLTYPE CCommonBrowser::_PositionViewWindow(HWND *, RECT *)
00507 {
00508 return E_NOTIMPL;
00509 }
00510
00511 HRESULT STDMETHODCALLTYPE CCommonBrowser::IEParseDisplayNameEx(unsigned int, const unsigned short *, DWORD, LPITEMIDLIST *)
00512 {
00513 return E_NOTIMPL;
00514 }
00515
00516 HRESULT STDMETHODCALLTYPE CCommonBrowser::InsertMenusSB(HMENU hmenuShared, LPOLEMENUGROUPWIDTHS lpMenuWidths)
00517 {
00518 return E_NOTIMPL;
00519 }
00520
00521 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetMenuSB(HMENU hmenuShared, HOLEMENU holemenuRes, HWND hwndActiveObject)
00522 {
00523 return E_NOTIMPL;
00524 }
00525
00526 HRESULT STDMETHODCALLTYPE CCommonBrowser::RemoveMenusSB(HMENU hmenuShared)
00527 {
00528 return E_NOTIMPL;
00529 }
00530
00531 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetStatusTextSB(LPCOLESTR pszStatusText)
00532 {
00533 return E_NOTIMPL;
00534 }
00535
00536 HRESULT STDMETHODCALLTYPE CCommonBrowser::EnableModelessSB(BOOL fEnable)
00537 {
00538 return E_NOTIMPL;
00539 }
00540
00541 HRESULT STDMETHODCALLTYPE CCommonBrowser::TranslateAcceleratorSB(MSG *pmsg, WORD wID)
00542 {
00543 return E_NOTIMPL;
00544 }
00545
00546 HRESULT STDMETHODCALLTYPE CCommonBrowser::BrowseObject(LPCITEMIDLIST pidl, UINT wFlags)
00547 {
00548 return E_NOTIMPL;
00549 }
00550
00551 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetViewStateStream(DWORD grfMode, IStream **ppStrm)
00552 {
00553 return E_NOTIMPL;
00554 }
00555
00556 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetControlWindow(UINT id, HWND *lphwnd)
00557 {
00558 return E_NOTIMPL;
00559 }
00560
00561 HRESULT STDMETHODCALLTYPE CCommonBrowser::SendControlMsg(UINT id, UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT *pret)
00562 {
00563 return E_NOTIMPL;
00564 }
00565
00566 HRESULT STDMETHODCALLTYPE CCommonBrowser::QueryActiveShellView(struct IShellView **ppshv)
00567 {
00568 return E_NOTIMPL;
00569 }
00570
00571 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnViewWindowActive(struct IShellView *ppshv)
00572 {
00573 return E_NOTIMPL;
00574 }
00575
00576 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetToolbarItems(LPTBBUTTON lpButtons, UINT nButtons, UINT uFlags)
00577 {
00578 return E_NOTIMPL;
00579 }
00580
00581 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetPropertyBag(long flags, REFIID riid, void **ppvObject)
00582 {
00583 return E_NOTIMPL;
00584 }
00585
00586 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetWindow(HWND *lphwnd)
00587 {
00588 return E_NOTIMPL;
00589 }
00590
00591 HRESULT STDMETHODCALLTYPE CCommonBrowser::ContextSensitiveHelp(BOOL fEnterMode)
00592 {
00593 return E_NOTIMPL;
00594 }
00595
00596 HRESULT STDMETHODCALLTYPE CCommonBrowser::GetBorderDW(IUnknown* punkObj, LPRECT prcBorder)
00597 {
00598 return E_NOTIMPL;
00599 }
00600
00601 HRESULT STDMETHODCALLTYPE CCommonBrowser::RequestBorderSpaceDW(IUnknown* punkObj, LPCBORDERWIDTHS pbw)
00602 {
00603 return E_NOTIMPL;
00604 }
00605
00606 HRESULT STDMETHODCALLTYPE CCommonBrowser::SetBorderSpaceDW(IUnknown* punkObj, LPCBORDERWIDTHS pbw)
00607 {
00608 return E_NOTIMPL;
00609 }
00610
00611 HRESULT STDMETHODCALLTYPE CCommonBrowser::AddToolbar(IUnknown *punkSrc, LPCWSTR pwszItem, DWORD dwAddFlags)
00612 {
00613 return E_NOTIMPL;
00614 }
00615
00616 HRESULT STDMETHODCALLTYPE CCommonBrowser::RemoveToolbar(IUnknown *punkSrc, DWORD dwRemoveFlags)
00617 {
00618 return E_NOTIMPL;
00619 }
00620
00621 HRESULT STDMETHODCALLTYPE CCommonBrowser::FindToolbar(LPCWSTR pwszItem, REFIID riid, void **ppv)
00622 {
00623 return E_NOTIMPL;
00624 }
00625
00626 HRESULT STDMETHODCALLTYPE CCommonBrowser::OnFocusChangeIS(IUnknown *punkObj, BOOL fSetFocus)
00627 {
00628 return E_NOTIMPL;
00629 }
00630
00631 HRESULT STDMETHODCALLTYPE CCommonBrowser::DragEnter(IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect)
00632 {
00633 return E_NOTIMPL;
00634 }
00635
00636 HRESULT STDMETHODCALLTYPE CCommonBrowser::DragOver(DWORD grfKeyState, POINTL pt, DWORD *pdwEffect)
00637 {
00638 return E_NOTIMPL;
00639 }
00640
00641 HRESULT STDMETHODCALLTYPE CCommonBrowser::DragLeave()
00642 {
00643 return E_NOTIMPL;
00644 }
00645
00646 HRESULT STDMETHODCALLTYPE CCommonBrowser::Drop(IDataObject *pDataObj, DWORD grfKeyState, POINTL pt, DWORD *pdwEffect)
00647 {
00648 return E_NOTIMPL;
00649 }