/usr/include/wine/windows/shdeprecated.idl is in wine1.6-dev 1:1.6.2-0ubuntu14.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 | /*
* Deprecated shell interfaces
*
* Copyright (C) 2010 Nikolay Sivov for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
import "objidl.idl";
import "ocidl.idl";
import "shtypes.idl";
import "shobjidl.idl";
import "hlink.idl";
import "exdisp.idl";
cpp_quote("#define TLOG_BACK -1")
cpp_quote("#define TLOG_FORE 1")
cpp_quote("#define TLMENUF_INCLUDECURRENT 0x00000001")
cpp_quote("#define TLMENUF_CHECKCURRENT (TLMENUF_INCLUDECURRENT | 0x00000002)")
cpp_quote("#define TLMENUF_BACK 0x00000010")
cpp_quote("#define TLMENUF_FORE 0x00000020")
cpp_quote("#define TLMENUF_BACKANDFORTH (TLMENUF_BACK | TLMENUF_FORE | TLMENUF_INCLUDECURRENT)")
[
hidden,
local,
object,
uuid(F46EDB3B-BC2F-11d0-9412-00AA00A3EBD3)
]
interface ITravelEntry : IUnknown
{
HRESULT Invoke(
[in] IUnknown *punk);
HRESULT Update(
[in] IUnknown *punk,
[in] BOOL fIsLocalAnchor);
HRESULT GetPidl(
[out] LPITEMIDLIST *ppidl);
};
[
hidden,
local,
object,
uuid(66A9CB08-4802-11d2-A561-00A0C92DBFE8)
]
interface ITravelLog : IUnknown
{
HRESULT AddEntry(
[in] IUnknown *punk,
[in] BOOL fIsLocalAnchor);
HRESULT UpdateEntry(
[in] IUnknown *punk,
[in] BOOL fIsLocalAnchor);
HRESULT UpdateExternal(
[in] IUnknown *punk,
[in] IUnknown *punkHLBrowseContext);
HRESULT Travel(
[in] IUnknown *punk,
[in] int iOffset);
HRESULT GetTravelEntry(
[in] IUnknown *punk,
[in] int iOffset,
[optional, out] ITravelEntry **ppte);
HRESULT FindTravelEntry(
[in] IUnknown *punk,
[in] LPCITEMIDLIST pidl,
[out] ITravelEntry **ppte);
HRESULT GetToolTipText(
[in] IUnknown *punk,
[in] int iOffset,
[in] int idsTemplate,
[out, size_is(cchText)] LPWSTR pwzText,
[in] DWORD cchText);
HRESULT InsertMenuEntries(
[in] IUnknown *punk,
[in] HMENU hmenu,
[in] int nPos,
[in] int idFirst,
[in] int idLast,
[in] DWORD dwFlags);
HRESULT Clone(
[out] ITravelLog **pptl);
DWORD CountEntries(
[in] IUnknown *punk);
HRESULT Revert();
};
typedef void *CIE4ConnectionPoint;
[
local,
object,
uuid(0D7D1D00-6FC0-11D0-A974-00C04FD705A2)
]
interface IExpDispSupport : IUnknown
{
HRESULT FindCIE4ConnectionPoint(
REFIID riid,
CIE4ConnectionPoint **ppccp);
HRESULT OnTranslateAccelerator(
MSG *pMsg,
DWORD grfModifiers);
HRESULT OnInvoke(
DISPID dispidMember,
REFIID iid,
LCID lcid,
WORD wFlags,
DISPPARAMS *pdispparams,
VARIANT *pVarResult,
EXCEPINFO *pexcepinfo,
UINT *puArgErr);
};
typedef enum tagBNSTATE
{
BNS_NORMAL = 0,
BNS_BEGIN_NAVIGATE = 1,
BNS_NAVIGATE = 2
} BNSTATE;
enum {
SBSC_HIDE = 0,
SBSC_SHOW = 1,
SBSC_TOGGLE = 2,
SBSC_QUERY = 3
};
cpp_quote("#define BSF_REGISTERASDROPTARGET 0x00000001")
cpp_quote("#define BSF_THEATERMODE 0x00000002")
cpp_quote("#define BSF_NOLOCALFILEWARNING 0x00000010")
cpp_quote("#define BSF_UISETBYAUTOMATION 0x00000100")
cpp_quote("#define BSF_RESIZABLE 0x00000200")
cpp_quote("#define BSF_CANMAXIMIZE 0x00000400")
cpp_quote("#define BSF_TOPBROWSER 0x00000800")
cpp_quote("#define BSF_NAVNOHISTORY 0x00001000")
cpp_quote("#define BSF_HTMLNAVCANCELED 0x00002000")
cpp_quote("#define BSF_DONTSHOWNAVCANCELPAGE 0x00004000")
cpp_quote("#define BSF_SETNAVIGATABLECODEPAGE 0x00008000")
cpp_quote("#define BSF_DELEGATEDNAVIGATION 0x00010000")
cpp_quote("#define BSF_TRUSTEDFORACTIVEX 0x00020000")
cpp_quote("#define HLNF_CALLERUNTRUSTED 0x00200000")
cpp_quote("#define HLNF_TRUSTEDFORACTIVEX 0x00400000")
cpp_quote("#define HLNF_DISABLEWINDOWRESTRICTIONS 0x00800000")
cpp_quote("#define HLNF_TRUSTFIRSTDOWNLOAD 0x01000000")
cpp_quote("#define HLNF_UNTRUSTEDFORDOWNLOAD 0x02000000")
cpp_quote("#define SHHLNF_NOAUTOSELECT 0x04000000")
cpp_quote("#define SHHLNF_WRITENOHISTORY 0x08000000")
cpp_quote("#define HLNF_EXTERNALNAVIGATE 0x10000000")
cpp_quote("#define HLNF_ALLOW_AUTONAVIGATE 0x20000000")
cpp_quote("#define HLNF_NEWWINDOWSMANAGED 0x80000000")
[
local,
object,
uuid(02ba3b52-0547-11d1-b833-00c04fc9b31f)
]
interface IBrowserService : IUnknown
{
HRESULT GetParentSite(
[out] IOleInPlaceSite **ppipsite);
HRESULT SetTitle(
[in] IShellView *psv,
[in] LPCWSTR pszName);
HRESULT GetTitle(
[in] IShellView *psv,
[out, size_is(cchName)] LPWSTR pszName,
[in] DWORD cchName);
HRESULT GetOleObject(
[out] IOleObject **ppobjv);
HRESULT GetTravelLog(
[out, optional] ITravelLog **pptl);
HRESULT ShowControlWindow(
[in] UINT id,
[in] BOOL fShow);
HRESULT IsControlWindowShown(
[in] UINT id,
[out] BOOL *pfShown);
HRESULT IEGetDisplayName(
[in] PCIDLIST_ABSOLUTE pidl,
[out] LPWSTR pwszName,
[in] UINT uFlags);
HRESULT IEParseDisplayName(
[in] UINT uiCP,
[in] LPCWSTR pwszPath,
[out] PIDLIST_ABSOLUTE *ppidlOut);
HRESULT DisplayParseError(
[in] HRESULT hres,
[in] LPCWSTR pwszPath);
HRESULT NavigateToPidl(
[in] PCIDLIST_ABSOLUTE pidl,
[in] DWORD grfHLNF);
HRESULT SetNavigateState(
[in] BNSTATE bnstate);
HRESULT GetNavigateState(
[out] BNSTATE *pbnstate);
HRESULT NotifyRedirect(
[in] IShellView *psv,
[in] PCIDLIST_ABSOLUTE pidl,
[out] BOOL *pfDidBrowse);
HRESULT UpdateWindowList();
HRESULT UpdateBackForwardState();
HRESULT SetFlags(
[in] DWORD dwFlags,
[in] DWORD dwFlagMask);
HRESULT GetFlags(
[out] DWORD *pdwFlags);
HRESULT CanNavigateNow();
HRESULT GetPidl(
[out] PIDLIST_ABSOLUTE *ppidl);
HRESULT SetReferrer(
[in] PCIDLIST_ABSOLUTE pidl);
DWORD GetBrowserIndex();
HRESULT GetBrowserByIndex(
[in] DWORD dwID,
[out] IUnknown **ppunk);
HRESULT GetHistoryObject(
[out] IOleObject **ppole,
[out] IStream **pstm,
[out] IBindCtx **ppbc);
HRESULT SetHistoryObject(
[in] IOleObject *pole,
[in] BOOL fIsLocalAnchor);
HRESULT CacheOLEServer(
[in] IOleObject *pole);
HRESULT GetSetCodePage(
[in] VARIANT *pvarIn,
[out] VARIANT *pvarOut);
HRESULT OnHttpEquiv(
[in] IShellView *psv,
[in] BOOL fDone,
[in] VARIANT *pvarargIn,
[out] VARIANT *pvarargOut);
HRESULT GetPalette(
[out] HPALETTE *hpal);
HRESULT RegisterWindow(
[in] BOOL fForceRegister,
[in] int swc);
}
[
object,
local,
uuid(5836fb00-8187-11cf-a12b-00aa004ae837)
]
interface IShellService : IUnknown
{
HRESULT SetOwner( [in] IUnknown *pUnk );
}
cpp_quote("#if 0")
typedef HANDLE HMONITOR;
cpp_quote("#endif")
enum {
SECURELOCK_NOCHANGE = -1,
SECURELOCK_SET_UNSECURE = 0,
SECURELOCK_SET_MIXED = 1,
SECURELOCK_SET_SECUREUNKNOWNBIT = 2,
SECURELOCK_SET_SECURE40BIT = 3,
SECURELOCK_SET_SECURE56BIT = 4,
SECURELOCK_SET_FORTEZZA = 5,
SECURELOCK_SET_SECURE128BIT = 6,
SECURELOCK_FIRSTSUGGEST = 7,
SECURELOCK_SUGGEST_UNSECURE = SECURELOCK_FIRSTSUGGEST,
SECURELOCK_SUGGEST_MIXED = 8,
SECURELOCK_SUGGEST_SECUREUNKNOWNBIT = 9,
SECURELOCK_SUGGEST_SECURE40BIT = 10,
SECURELOCK_SUGGEST_SECURE56BIT = 11,
SECURELOCK_SUGGEST_FORTEZZA = 12,
SECURELOCK_SUGGEST_SECURE128BIT = 13,
};
typedef struct {
HWND _hwnd;
ITravelLog *_ptl;
IHlinkFrame *_phlf;
IWebBrowser2 *_pautoWB2;
IExpDispSupport *_pautoEDS;
IShellService *_pautoSS;
int _eSecureLockIcon;
DWORD _fCreatingViewWindow;
UINT _uActivateState;
LPCITEMIDLIST _pidlNewShellView;
IOleCommandTarget *_pctView;
LPITEMIDLIST _pidlCur;
IShellView *_psv;
IShellFolder *_psf;
HWND _hwndView;
LPWSTR _pszTitleCur;
LPITEMIDLIST _pidlPending;
IShellView *_psvPending;
IShellFolder *_psfPending;
HWND _hwndViewPending;
LPWSTR _pszTitlePending;
BOOL _fIsViewMSHTML;
BOOL _fPrivacyImpacted;
} BASEBROWSERDATA, *LPBASEBROWSERDATA;
typedef const BASEBROWSERDATA *LPCBASEBROWSERDATA;
cpp_quote("#define VIEW_PRIORITY_RESTRICTED 0x00000070")
cpp_quote("#define VIEW_PRIORITY_CACHEHIT 0x00000050")
cpp_quote("#define VIEW_PRIORITY_STALECACHEHIT 0x00000045")
cpp_quote("#define VIEW_PRIORITY_USEASDEFAULT 0x00000043")
cpp_quote("#define VIEW_PRIORITY_SHELLEXT 0x00000040")
cpp_quote("#define VIEW_PRIORITY_CACHEMISS 0x00000030")
cpp_quote("#define VIEW_PRIORITY_INHERIT 0x00000020")
cpp_quote("#define VIEW_PRIORITY_SHELLEXT_ASBACKUP 0x0015")
cpp_quote("#define VIEW_PRIORITY_DESPERATE 0x00000010")
cpp_quote("#define VIEW_PRIORITY_NONE 0x00000000")
typedef struct tagFolderSetData {
FOLDERSETTINGS _fs;
SHELLVIEWID _vidRestore;
DWORD _dwViewPriority;
} FOLDERSETDATA, *LPFOLDERSETDATA;
typedef struct SToolbarItem {
IDockingWindow *ptbar;
BORDERWIDTHS rcBorderTool;
LPWSTR pwszItem;
BOOL fShow;
HMONITOR hMon;
} TOOLBARITEM, *LPTOOLBARITEM;
cpp_quote("#define ITB_VIEW ((UINT)-1)")
[
local,
object,
uuid(68BD21CC-438B-11d2-A560-00A0C92DBFE8)
]
interface IBrowserService2 : IBrowserService
{
LRESULT WndProcBS(
[in] HWND hwnd,
[in] UINT uMsg,
[in, out] WPARAM wParam,
[in, out] LPARAM lParam);
HRESULT SetAsDefFolderSettings();
HRESULT GetViewRect(
[in, out] RECT *prc);
HRESULT OnSize(
[in] WPARAM wParam);
HRESULT OnCreate(
[in] struct tagCREATESTRUCTW *pcs);
LRESULT OnCommand(
[in] WPARAM wParam,
[in] LPARAM lParam);
HRESULT OnDestroy();
LRESULT OnNotify(
[in, out] struct tagNMHDR *pnm);
HRESULT OnSetFocus();
HRESULT OnFrameWindowActivateBS(
[in] BOOL fActive);
HRESULT ReleaseShellView();
HRESULT ActivatePendingView();
HRESULT CreateViewWindow(
[in] IShellView *psvNew,
[in] IShellView *psvOld,
[out] LPRECT prcView,
[out] HWND *phwnd);
HRESULT CreateBrowserPropSheetExt(
[in] REFIID riid,
[out] void **ppv);
HRESULT GetViewWindow(
[out] HWND *phwndView);
HRESULT GetBaseBrowserData(
[in, out] LPCBASEBROWSERDATA *pbbd);
LPBASEBROWSERDATA PutBaseBrowserData();
HRESULT InitializeTravelLog(
[in] ITravelLog *ptl,
[in] DWORD dw);
HRESULT SetTopBrowser();
HRESULT Offline(
[in] int iCmd);
HRESULT AllowViewResize(
[in] BOOL f);
HRESULT SetActivateState(
[in] UINT u);
HRESULT UpdateSecureLockIcon(
[in] int eSecureLock);
HRESULT InitializeDownloadManager();
HRESULT InitializeTransitionSite();
HRESULT _Initialize(
[in] HWND hwnd,
[in] IUnknown *pauto);
HRESULT _CancelPendingNavigationAsync();
HRESULT _CancelPendingView();
HRESULT _MaySaveChanges();
HRESULT _PauseOrResumeView(
[in] BOOL fPaused);
HRESULT _DisableModeless();
HRESULT _NavigateToPidl(
[in] LPCITEMIDLIST pidl,
[in] DWORD grfHLNF,
[in] DWORD dwFlags);
HRESULT _TryShell2Rename(
[in] IShellView *psv,
[in] LPCITEMIDLIST pidlNew);
HRESULT _SwitchActivationNow();
HRESULT _ExecChildren(
[in] IUnknown *punkBar,
[in] BOOL fBroadcast,
[in] const GUID *pguidCmdGroup,
[in] DWORD nCmdID,
[in] DWORD nCmdexecopt,
[in] VARIANTARG *pvarargIn,
[in, out] VARIANTARG *pvarargOut);
HRESULT _SendChildren(
[in] HWND hwndBar,
[in] BOOL fBroadcast,
[in] UINT uMsg,
[in, out] WPARAM wParam,
[in, out] LPARAM lParam);
HRESULT GetFolderSetData(
[in, out] struct tagFolderSetData *pfsd);
HRESULT _OnFocusChange(
[in] UINT itb);
HRESULT v_ShowHideChildWindows(
[in] BOOL fChildOnly);
UINT _get_itbLastFocus();
HRESULT _put_itbLastFocus(
[in] UINT itbLastFocus);
HRESULT _UIActivateView(
[in] UINT uState);
HRESULT _GetViewBorderRect(
[in, out] RECT* prc);
HRESULT _UpdateViewRectSize();
HRESULT _ResizeNextBorder(
[in] UINT itb);
HRESULT _ResizeView();
HRESULT _GetEffectiveClientArea(
[in, out] LPRECT lprectBorder,
[in] HMONITOR hmon);
IStream* v_GetViewStream(
[in] LPCITEMIDLIST pidl,
[in] DWORD grfMode,
[in] LPCWSTR pwszName);
LRESULT ForwardViewMsg(
[in] UINT uMsg,
[in] WPARAM wParam,
[in] LPARAM lParam);
HRESULT SetAcceleratorMenu(
[in] HACCEL hacc);
int _GetToolbarCount();
LPTOOLBARITEM _GetToolbarItem(
[in] int itb);
HRESULT _SaveToolbars(
[in] IStream *pstm);
HRESULT _LoadToolbars(
[in] IStream *pstm);
HRESULT _CloseAndReleaseToolbars(
[in] BOOL fClose);
HRESULT v_MayGetNextToolbarFocus(
[in] LPMSG lpMsg,
[in] UINT itbNext,
[in] int citb,
[out] LPTOOLBARITEM *pptbi,
[out] HWND *phwnd);
HRESULT _ResizeNextBorderHelper(
[in] UINT itb,
[in] BOOL bUseHmonitor);
UINT _FindTBar(
[in] IUnknown *punkSrc);
HRESULT _SetFocus(
[in] LPTOOLBARITEM ptbi,
[in] HWND hwnd,
[in] LPMSG lpMsg);
HRESULT v_MayTranslateAccelerator(
[in] MSG* pmsg);
HRESULT _GetBorderDWHelper(
[in] IUnknown *punkSrc,
[in] LPRECT lprectBorder,
[in] BOOL bUseHmonitor);
HRESULT v_CheckZoneCrossing(
[in, out] LPCITEMIDLIST pidl);
};
|