2 * COM interfaces for shell objects
4 * Copyright (C) 1999 Juergen Schmied
5 * Copyright (C) 2003 Alexandre Julliard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 import "servprov.idl";
30 /* FIXME: import "prsht.idl";*/
33 /* FIXME: import "propsys.idl"; */
34 /* FIXME: import "structuredquery.idl"; */
36 cpp_quote("/* FIXME: #include <sherrors.h> */")
39 /*****************************************************************************
40 * IPersistFolder interface
44 uuid(000214ea-0000-0000-c000-000000000046),
45 pointer_default(unique)
47 interface IPersistFolder : IPersist
49 typedef IPersistFolder *LPPERSISTFOLDER;
51 HRESULT Initialize( [in] LPCITEMIDLIST pidl );
55 /*****************************************************************************
56 * IPersistFolder2 interface
60 uuid(1ac3d9f0-175c-11d1-95be-00609797ea4f),
61 pointer_default(unique)
63 interface IPersistFolder2 : IPersistFolder
65 typedef IPersistFolder2 *LPPERSISTFOLDER2;
67 HRESULT GetCurFolder( [out] LPITEMIDLIST *ppidl );
71 /*****************************************************************************
72 * IEnumIDList interface
76 uuid(000214f2-0000-0000-c000-000000000046),
77 pointer_default(unique)
79 interface IEnumIDList : IUnknown
81 typedef IEnumIDList *LPENUMIDLIST;
85 [out, size_is(celt), length_is(*pceltFetched)] LPITEMIDLIST *rgelt,
86 [out] ULONG *pceltFetched);
88 HRESULT Skip( [in] ULONG celt );
90 HRESULT Clone( [out] IEnumIDList **ppenum );
93 /*****************************************************************************
94 * IShellPropSheetExt interface
97 typedef LPARAM LPFNSVADDPROPSHEETPAGE;
99 cpp_quote("#include <prsht.h>")
100 cpp_quote("typedef LPFNADDPROPSHEETPAGE LPFNSVADDPROPSHEETPAGE;")
105 uuid(000214E9-0000-0000-C000-000000000046),
106 pointer_default(unique)
108 interface IShellPropSheetExt : IUnknown
110 enum tagSHELLPROPSHEETEXTPAGEID {
111 EXPPS_FILETYPES = 0x1
117 [in] LPFNSVADDPROPSHEETPAGE pfnAddPage,
121 [in] LPFNSVADDPROPSHEETPAGE pfnReplaceWith,
124 typedef IShellPropSheetExt *LPSHELLPROPSHEETEXT;
126 /*****************************************************************************
127 * IShellFolder interface
131 uuid(000214e6-0000-0000-c000-000000000046),
132 pointer_default(unique)
134 interface IShellFolder : IUnknown
136 typedef IShellFolder * LPSHELLFOLDER;
138 typedef enum tagSHGDN
142 SHGDN_FOREDITING = 0x1000,
143 SHGDN_INCLUDE_NONFILESYS = 0x2000,
144 SHGDN_FORADDRESSBAR = 0x4000,
145 SHGDN_FORPARSING = 0x8000
148 typedef DWORD SHGDNF;
152 SHCONTF_FOLDERS = 32,
153 SHCONTF_NONFOLDERS = 64,
154 SHCONTF_INCLUDEHIDDEN = 128,
155 SHCONTF_INIT_ON_FIRST_NEXT = 256,
156 SHCONTF_NETPRINTERSRCH = 512,
157 SHCONTF_SHAREABLE = 1024,
158 SHCONTF_STORAGE = 2048
161 typedef DWORD SHCONTF;
163 cpp_quote("#define SFGAO_CANCOPY DROPEFFECT_COPY")
164 cpp_quote("#define SFGAO_CANMOVE DROPEFFECT_MOVE")
165 cpp_quote("#define SFGAO_CANLINK DROPEFFECT_LINK")
166 cpp_quote("#define SFGAO_STORAGE 0x00000008L")
167 cpp_quote("#define SFGAO_CANRENAME 0x00000010L")
168 cpp_quote("#define SFGAO_CANDELETE 0x00000020L")
169 cpp_quote("#define SFGAO_HASPROPSHEET 0x00000040L")
170 cpp_quote("#define SFGAO_DROPTARGET 0x00000100L")
171 cpp_quote("#define SFGAO_CAPABILITYMASK 0x00000177L")
172 cpp_quote("#define SFGAO_ENCRYPTED 0x00002000L")
173 cpp_quote("#define SFGAO_ISSLOW 0x00004000L")
174 cpp_quote("#define SFGAO_GHOSTED 0x00008000L")
175 cpp_quote("#define SFGAO_LINK 0x00010000L")
176 cpp_quote("#define SFGAO_SHARE 0x00020000L")
177 cpp_quote("#define SFGAO_READONLY 0x00040000L")
178 cpp_quote("#define SFGAO_HIDDEN 0x00080000L")
179 cpp_quote("#define SFGAO_DISPLAYATTRMASK 0x000FC000L")
180 cpp_quote("#define SFGAO_FILESYSANCESTOR 0x10000000L")
181 cpp_quote("#define SFGAO_FOLDER 0x20000000L")
182 cpp_quote("#define SFGAO_FILESYSTEM 0x40000000L")
183 cpp_quote("#define SFGAO_HASSUBFOLDER 0x80000000L")
184 cpp_quote("#define SFGAO_CONTENTSMASK 0x80000000L")
185 cpp_quote("#define SFGAO_VALIDATE 0x01000000L")
186 cpp_quote("#define SFGAO_REMOVABLE 0x02000000L")
187 cpp_quote("#define SFGAO_COMPRESSED 0x04000000L")
188 cpp_quote("#define SFGAO_BROWSABLE 0x08000000L")
189 cpp_quote("#define SFGAO_NONENUMERATED 0x00100000L")
190 cpp_quote("#define SFGAO_NEWCONTENT 0x00200000L")
191 cpp_quote("#define SFGAO_STREAM 0x00400000L")
192 cpp_quote("#define SFGAO_STORAGEANCESTOR 0x00800000L")
194 typedef ULONG SFGAOF;
196 HRESULT ParseDisplayName(
198 [in] LPBC pbcReserved,
199 [in, string] LPOLESTR lpszDisplayName,
200 [out] ULONG *pchEaten,
201 [out] LPITEMIDLIST *ppidl,
202 [in, out, unique] ULONG *pdwAttributes);
206 [in] SHCONTF grfFlags,
207 [out] IEnumIDList **ppenumIDList);
209 HRESULT BindToObject(
210 [in] LPCITEMIDLIST pidl,
211 [in] LPBC pbcReserved,
213 [out, iid_is(riid)] void **ppvOut);
215 HRESULT BindToStorage(
216 [in] LPCITEMIDLIST pidl,
217 [in] LPBC pbcReserved,
219 [out, iid_is(riid)] void **ppvObj);
223 [in] LPCITEMIDLIST pidl1,
224 [in] LPCITEMIDLIST pidl2);
226 HRESULT CreateViewObject(
229 [out, iid_is(riid)] void **ppvOut);
231 HRESULT GetAttributesOf(
233 [in, size_is(cidl)] LPCITEMIDLIST *apidl,
234 [in, out] SFGAOF *rgfInOut);
236 HRESULT GetUIObjectOf(
239 [in, size_is(cidl)] LPCITEMIDLIST *apidl,
241 [in, out, unique] UINT *prgfInOut,
242 [out, iid_is(riid)] void **ppvOut);
244 HRESULT GetDisplayNameOf(
245 [in] LPCITEMIDLIST pidl,
247 [out] STRRET *lpName);
251 [in] LPCITEMIDLIST pidl,
252 [in, string] LPCOLESTR lpszName,
254 [out] LPITEMIDLIST *ppidlOut);
258 /*****************************************************************************
259 * IEnumExtraSearch interface
263 uuid(0e700be1-9db6-11d1-a1ce-00c04fd75d13),
264 pointer_default(unique)
266 interface IEnumExtraSearch : IUnknown
268 typedef IEnumExtraSearch *LPENUMEXTRASEARCH;
273 WCHAR wszFriendlyName[80];
275 *WCHAR wszMenuText[80];
276 *WCHAR wszHelpText[MAX_PATH];
280 *WCHAR wszIcon[MAX_PATH+10];
281 *WCHAR wszGreyIcon[MAX_PATH+10];
282 *WCHAR wszClrIcon[MAX_PATH+10];
284 } EXTRASEARCH, *LPEXTRASEARCH;
288 [out, size_is(celt), length_is(*pceltFetched)] EXTRASEARCH *rgelt,
289 [out] ULONG *pceltFetched);
291 HRESULT Skip( [in] ULONG celt );
293 HRESULT Clone( [out] IEnumExtraSearch **ppenum );
297 /*****************************************************************************
298 * IShellFolder2 interface
302 uuid(93f2f68c-1d1b-11d3-a30e-00c04f79abd1),
303 pointer_default(unique)
305 interface IShellFolder2 : IShellFolder
309 SHCOLSTATE_TYPE_STR = 0x00000001,
310 SHCOLSTATE_TYPE_INT = 0x00000002,
311 SHCOLSTATE_TYPE_DATE = 0x00000003,
312 SHCOLSTATE_TYPEMASK = 0x0000000f,
313 SHCOLSTATE_ONBYDEFAULT = 0x00000010,
314 SHCOLSTATE_SLOW = 0x00000020,
315 SHCOLSTATE_EXTENDED = 0x00000040,
316 SHCOLSTATE_SECONDARYUI = 0x00000080,
317 SHCOLSTATE_HIDDEN = 0x00000100,
318 SHCOLSTATE_PREFER_VARCMP = 0x00000200
321 typedef DWORD SHCOLSTATEF;
327 } SHCOLUMNID, *LPSHCOLUMNID;
328 typedef const SHCOLUMNID *LPCSHCOLUMNID;
330 HRESULT GetDefaultSearchGUID( [out] GUID *lpguid );
331 HRESULT EnumSearches( [out] IEnumExtraSearch **ppenum );
332 HRESULT GetDefaultColumn( [in] DWORD dwReserved, [out] ULONG *pSort, [out] ULONG *pDisplay );
333 HRESULT GetDefaultColumnState( [in] UINT iColumn, [out] SHCOLSTATEF *pcsFlags );
334 HRESULT GetDetailsEx( [in] LPCITEMIDLIST pidl, [in] const SHCOLUMNID *pscid, [out] VARIANT *pv);
335 HRESULT GetDetailsOf( [in] LPCITEMIDLIST pidl, [in] UINT iColumn, [out] SHELLDETAILS *psd);
336 HRESULT MapColumnToSCID( [in] UINT iColumn, [in] SHCOLUMNID *pscid );
341 /*****************************************************************************
344 typedef char *LPVIEWSETTINGS;
348 FWF_AUTOARRANGE = 0x00000001,
349 FWF_ABBREVIATEDNAMES = 0x00000002,
350 FWF_SNAPTOGRID = 0x00000004,
351 FWF_OWNERDATA = 0x00000008,
352 FWF_BESTFITWINDOW = 0x00000010,
353 FWF_DESKTOP = 0x00000020,
354 FWF_SINGLESEL = 0x00000040,
355 FWF_NOSUBFOLDERS = 0x00000080,
356 FWF_TRANSPARENT = 0x00000100,
357 FWF_NOCLIENTEDGE = 0x00000200,
358 FWF_NOSCROLL = 0x00000400,
359 FWF_ALIGNLEFT = 0x00000800,
360 FWF_NOICONS = 0x00001000,
361 FWF_SHOWSELALWAYS = 0x00002000,
362 FWF_NOVISIBLE = 0x00004000,
363 FWF_SINGLECLICKACTIVATE = 0x00008000,
364 FWF_NOWEBVIEW = 0x00010000,
365 FWF_HIDEFILENAMES = 0x00020000,
366 FWF_CHECKSELECT = 0x00040000
372 FVM_FIRST = FVM_ICON,
379 FVM_LAST = FVM_THUMBSTRIP
386 } FOLDERSETTINGS, *PFOLDERSETTINGS, *LPFOLDERSETTINGS;
387 typedef const FOLDERSETTINGS *LPCFOLDERSETTINGS;
390 /*****************************************************************************
391 * IShellView interface
393 interface IShellBrowser; /* forward declaration */
396 uuid(000214e3-0000-0000-c000-000000000046),
397 pointer_default(unique)
399 interface IShellView : IOleWindow
401 typedef IShellView *LPSHELLVIEW;
403 cpp_quote("#define SVSI_DESELECT 0x00000000")
404 cpp_quote("#define SVSI_SELECT 0x00000001")
405 cpp_quote("#define SVSI_EDIT 0x00000003")
406 cpp_quote("#define SVSI_DESELECTOTHERS 0x00000004")
407 cpp_quote("#define SVSI_ENSUREVISIBLE 0x00000008")
408 cpp_quote("#define SVSI_FOCUSED 0x00000010")
409 cpp_quote("#define SVSI_TRANSLATEPT 0x00000020")
410 cpp_quote("#define SVSI_SELECTIONMARK 0x00000040")
411 cpp_quote("#define SVSI_POSITIONITEM 0x00000080")
412 cpp_quote("#define SVSI_CHECK 0x00000100")
413 cpp_quote("#define SVSI_NOSTATECHANGE 0x80000000")
419 SVGIO_BACKGROUND = 0x00000000,
420 SVGIO_SELECTION = 0x00000001,
421 SVGIO_ALLVIEW = 0x00000002,
422 SVGIO_CHECKED = 0x00000003,
423 SVGIO_TYPE_MASK = 0x0000000f,
424 SVGIO_FLAG_VIEWORDER = 0x80000000,
429 SVUIA_DEACTIVATE = 0,
430 SVUIA_ACTIVATE_NOFOCUS = 1,
431 SVUIA_ACTIVATE_FOCUS = 2,
432 SVUIA_INPLACEACTIVATE = 3
435 HRESULT TranslateAccelerator( [in] MSG *pmsg );
436 HRESULT EnableModeless( [in] BOOL fEnable );
437 HRESULT UIActivate( [in] UINT uState );
439 HRESULT CreateViewWindow(
440 [in] IShellView *psvPrevious,
441 [in] LPCFOLDERSETTINGS lpfs,
442 [in] IShellBrowser *psb,
446 HRESULT DestroyViewWindow();
447 HRESULT GetCurrentInfo( [out] LPFOLDERSETTINGS lpfs );
449 [local] HRESULT AddPropertySheetPages(
450 [in] DWORD dwReserved,
451 [in] LPFNSVADDPROPSHEETPAGE pfn,
454 HRESULT SaveViewState();
456 [in] LPCITEMIDLIST pidlItem,
458 HRESULT GetItemObject(
461 [out, iid_is(riid)] void **ppv);
465 /*****************************************************************************
466 * IShellBrowser interface
470 uuid(000214e2-0000-0000-c000-000000000046),
471 pointer_default(unique)
473 interface IShellBrowser : IOleWindow
475 typedef IShellBrowser *LPSHELLBROWSER;
477 cpp_quote("#define SBSP_DEFBROWSER 0x00000000")
478 cpp_quote("#define SBSP_SAMEBROWSER 0x00000001")
479 cpp_quote("#define SBSP_NEWBROWSER 0x00000002")
480 cpp_quote("#define SBSP_DEFMODE 0x00000000")
481 cpp_quote("#define SBSP_OPENMODE 0x00000010")
482 cpp_quote("#define SBSP_EXPLOREMODE 0x00000020")
483 cpp_quote("#define SBSP_HELPMODE 0x00000040")
484 cpp_quote("#define SBSP_NOTRANSFERHIST 0x00000080")
485 cpp_quote("#define SBSP_ABSOLUTE 0x00000000")
486 cpp_quote("#define SBSP_RELATIVE 0x00001000")
487 cpp_quote("#define SBSP_PARENT 0x00002000")
488 cpp_quote("#define SBSP_NAVIGATEBACK 0x00004000")
489 cpp_quote("#define SBSP_NAVIGATEFORWARD 0x00008000")
490 cpp_quote("#define SBSP_ALLOW_AUTONAVIGATE 0x00010000")
491 cpp_quote("#define SBSP_NOAUTOSELECT 0x04000000")
492 cpp_quote("#define SBSP_WRITENOHISTORY 0x08000000")
493 cpp_quote("#define SBSP_REDIRECT 0x40000000")
494 cpp_quote("#define SBSP_INITIATEDBYHLINKFRAME 0x80000000")
496 cpp_quote("#define FCW_STATUS 0x0001")
497 cpp_quote("#define FCW_TOOLBAR 0x0002")
498 cpp_quote("#define FCW_TREE 0x0003")
499 cpp_quote("#define FCW_INTERNETBAR 0x0006")
500 cpp_quote("#define FCW_PROGRESS 0x0008")
502 cpp_quote("#define FCT_MERGE 0x0001")
503 cpp_quote("#define FCT_CONFIGABLE 0x0002")
504 cpp_quote("#define FCT_ADDTOEND 0x0004")
507 typedef LPARAM LPTBBUTTONSB;
509 cpp_quote("#include <commctrl.h>")
510 cpp_quote("typedef LPTBBUTTON LPTBBUTTONSB;")
513 HRESULT InsertMenusSB(
514 [in] HMENU hmenuShared,
515 [in, out] LPOLEMENUGROUPWIDTHS lpMenuWidths);
518 [in] HMENU hmenuShared,
519 [in] HOLEMENU holemenuReserved,
520 [in] HWND hwndActiveObject);
522 HRESULT RemoveMenusSB( [in] HMENU hmenuShared );
523 HRESULT SetStatusTextSB( [in, unique] LPCOLESTR pszStatusText );
524 HRESULT EnableModelessSB( [in] BOOL fEnable );
525 HRESULT TranslateAcceleratorSB( [in] MSG *pmsg, [in] WORD wID );
527 HRESULT BrowseObject(
528 [in] LPCITEMIDLIST pidl,
531 HRESULT GetViewStateStream(
533 [out] IStream **ppStrm);
535 HRESULT GetControlWindow(
539 [local] HRESULT SendControlMsg(
546 HRESULT QueryActiveShellView( [out] IShellView **ppshv );
547 HRESULT OnViewWindowActive( [in] IShellView *pshv );
550 HRESULT SetToolbarItems(
551 [in] LPTBBUTTONSB lpButtons,
557 /*****************************************************************************
558 * IShellLinkA interface
562 uuid(000214ee-0000-0000-c000-000000000046),
563 pointer_default(unique)
565 interface IShellLinkA : IUnknown
570 SLR_ANY_MATCH = 0x0002,
572 SLR_NOUPDATE = 0x0008,
573 SLR_NOSEARCH = 0x0010,
574 SLR_NOTRACK = 0x0020,
575 SLR_NOLINKINFO = 0x0040,
576 SLR_INVOKE_MSI = 0x0080,
577 SLR_NO_UI_WITH_MSG_PUMP = 0x0101,
582 SLGP_SHORTPATH = 0x0001,
583 SLGP_UNCPRIORITY = 0x0002,
584 SLGP_RAWPATH = 0x0004,
588 [out, size_is(cch)] LPSTR pszFile,
590 [in, out] WIN32_FIND_DATAA *pfd,
593 HRESULT GetIDList( [out] LPITEMIDLIST * ppidl );
595 HRESULT SetIDList( [in] LPCITEMIDLIST pidl );
597 HRESULT GetDescription(
598 [out, size_is(cch)] LPSTR pszName,
601 HRESULT SetDescription( [in] LPCSTR pszName );
603 HRESULT GetWorkingDirectory(
604 [out, size_is(cch)] LPSTR pszDir,
607 HRESULT SetWorkingDirectory( [in] LPCSTR pszDir );
609 HRESULT GetArguments(
610 [out, size_is(cch)] LPSTR pszArgs,
613 HRESULT SetArguments( [in] LPCSTR pszArgs );
615 HRESULT GetHotkey( [out] WORD *pwHotkey );
617 HRESULT SetHotkey( [in] WORD wHotkey );
619 HRESULT GetShowCmd( [out] int *piShowCmd );
621 HRESULT SetShowCmd( [in] int iShowCmd );
623 HRESULT GetIconLocation(
624 [out, size_is(cch)] LPSTR pszIconPath,
628 HRESULT SetIconLocation(
629 [in] LPCSTR pszIconPath,
632 HRESULT SetRelativePath(
633 [in] LPCSTR pszPathRel,
634 [in] DWORD dwReserved);
640 HRESULT SetPath( [in] LPCSTR pszFile );
644 /*****************************************************************************
645 * IShellLinkW interface
649 uuid(000214f9-0000-0000-c000-000000000046),
650 pointer_default(unique)
652 interface IShellLinkW : IUnknown
655 [out, size_is(cch)] LPWSTR pszFile,
657 [in, out] WIN32_FIND_DATAW *pfd,
660 HRESULT GetIDList( [out] LPITEMIDLIST * ppidl );
662 HRESULT SetIDList( [in] LPCITEMIDLIST pidl );
664 HRESULT GetDescription(
665 [out, size_is(cch)] LPWSTR pszName,
668 HRESULT SetDescription( [in] LPCWSTR pszName );
670 HRESULT GetWorkingDirectory(
671 [out, size_is(cch)] LPWSTR pszDir,
674 HRESULT SetWorkingDirectory( [in] LPCWSTR pszDir );
676 HRESULT GetArguments(
677 [out, size_is(cch)] LPWSTR pszArgs,
680 HRESULT SetArguments( [in] LPCWSTR pszArgs );
682 HRESULT GetHotkey( [out] WORD *pwHotkey );
684 HRESULT SetHotkey( [in] WORD wHotkey );
686 HRESULT GetShowCmd( [out] int *piShowCmd );
688 HRESULT SetShowCmd( [in] int iShowCmd );
690 HRESULT GetIconLocation(
691 [out, size_is(cch)] LPWSTR pszIconPath,
695 HRESULT SetIconLocation(
696 [in] LPCWSTR pszIconPath,
699 HRESULT SetRelativePath(
700 [in] LPCWSTR pszPathRel,
701 [in] DWORD dwReserved);
707 HRESULT SetPath( [in] LPCWSTR pszFile );
710 cpp_quote("#define IShellLink WINELIB_NAME_AW(IShellLink)")
713 /*****************************************************************************
714 * IShellExtInit interface
718 uuid(000214e8-0000-0000-c000-000000000046),
719 pointer_default(unique),
722 interface IShellExtInit : IUnknown
724 typedef IShellExtInit *LPSHELLEXTINIT;
727 [in] LPCITEMIDLIST pidlFolder,
728 [in] IDataObject *pdtobj,
729 [in] HKEY hkeyProgID);
733 /*******************************************************************************/
734 /* Note: the following interfaces are not in shobjidl.idl under Windows, they */
735 /* are declared directly in shlobj.h. It hopefully won't break anything to put */
736 /* them here anyway. */
737 /*******************************************************************************/
744 /*****************************************************************************
745 * IPersistFolder3 interface
749 uuid(cef04fdf-fe72-11d2-87a5-00c04f6837cf),
750 pointer_default(unique)
752 interface IPersistFolder3 : IPersistFolder2
756 LPITEMIDLIST pidlTargetFolder;
757 WCHAR szTargetParsingName[MAX_PATH];
758 WCHAR szNetworkProvider[MAX_PATH];
761 } PERSIST_FOLDER_TARGET_INFO;
763 HRESULT InitializeEx(
765 [in] LPCITEMIDLIST pidlRoot,
766 [in] const PERSIST_FOLDER_TARGET_INFO *ppfti);
768 HRESULT GetFolderTargetInfo( [out] PERSIST_FOLDER_TARGET_INFO *ppfti );
772 /*****************************************************************************
773 * IExtractIconA interface
777 uuid(000214eb-0000-0000-c000-000000000046),
778 pointer_default(unique)
780 interface IExtractIconA : IUnknown
782 cpp_quote("#define GIL_OPENICON 0x0001")
783 cpp_quote("#define GIL_FORSHELL 0x0002")
784 cpp_quote("#define GIL_ASYNC 0x0020")
785 cpp_quote("#define GIL_DEFAULTICON 0x0040")
786 cpp_quote("#define GIL_FORSHORTCUT 0x0080")
788 cpp_quote("#define GIL_SIMULATEDOC 0x0001")
789 cpp_quote("#define GIL_PERINSTANCE 0x0002")
790 cpp_quote("#define GIL_PERCLASS 0x0004")
791 cpp_quote("#define GIL_NOTFILENAME 0x0008")
792 cpp_quote("#define GIL_DONTCACHE 0x0010")
794 typedef IExtractIconA *LPEXTRACTICONA;
796 HRESULT GetIconLocation(
798 [out, size_is(cchMax)] LPSTR szIconFile,
801 [out] UINT *pwFlags);
805 [in] UINT nIconIndex,
806 [out] HICON *phiconLarge,
807 [out] HICON *phiconSmall,
808 [in] UINT nIconSize );
812 /*****************************************************************************
813 * IExtractIconW interface
817 uuid(000214fa-0000-0000-c000-000000000046),
818 pointer_default(unique)
820 interface IExtractIconW : IUnknown
822 typedef IExtractIconW *LPEXTRACTICONW;
824 HRESULT GetIconLocation(
826 [out, size_is(cchMax)] LPWSTR szIconFile,
829 [out] UINT *pwFlags);
832 [in] LPCWSTR pszFile,
833 [in] UINT nIconIndex,
834 [out] HICON *phiconLarge,
835 [out] HICON *phiconSmall,
836 [in] UINT nIconSize );
839 cpp_quote("#define LPEXTRACTICON WINELIB_NAME_AW(LPEXTRACTICON)")
840 cpp_quote("#define IExtractIcon WINELIB_NAME_AW(IExtractIcon)")
843 /*****************************************************************************
844 * ICommDlgBrowser interface
848 uuid(000214f1-0000-0000-c000-000000000046),
849 pointer_default(unique)
851 interface ICommDlgBrowser : IUnknown
853 cpp_quote("#define CDBOSC_SETFOCUS 0x00000000")
854 cpp_quote("#define CDBOSC_KILLFOCUS 0x00000001")
855 cpp_quote("#define CDBOSC_SELCHANGE 0x00000002")
856 cpp_quote("#define CDBOSC_RENAME 0x00000003")
857 cpp_quote("#define CDBOSC_STATECHANGE 0x00000004")
859 typedef ICommDlgBrowser *LPCOMMDLGBROWSER;
861 HRESULT OnDefaultCommand( [in] IShellView *shv );
862 HRESULT OnStateChange( [in] IShellView *shv, [in] ULONG uChange );
863 HRESULT IncludeObject( [in] IShellView *shv, [in] LPCITEMIDLIST pidl );
867 /*****************************************************************************
868 * IDockingWindowFrame interface
872 uuid(47d2657a-7b27-11d0-8ca9-00a0c92dbfe8),
873 pointer_default(unique),
876 interface IDockingWindowFrame : IOleWindow
878 cpp_quote("#define DWFRF_NORMAL 0x0000")
879 cpp_quote("#define DWFRF_DELETECONFIGDATA 0x0001")
880 cpp_quote("#define DWFAF_HIDDEN 0x0001")
883 [in] IUnknown *punkSrc,
884 [in] LPCWSTR pwszItem,
885 [in] DWORD dwAddFlags);
887 HRESULT RemoveToolbar(
888 [in] IUnknown *punkSrc,
889 [in] DWORD dwRemoveFlags);
892 [in] LPCWSTR pwszItem,
894 [out] LPVOID *ppvObj);
898 /*****************************************************************************
899 * IDragSourceHelper interface
903 uuid(de5bf786-477a-11d2-839d-00c04fd918d0),
904 pointer_default(unique)
906 interface IDragSourceHelper : IUnknown
912 HBITMAP hbmpDragImage;
914 } SHDRAGIMAGE, *LPSHDRAGIMAGE;
916 HRESULT InitializeFromBitmap(
917 [in] LPSHDRAGIMAGE pshdi,
918 [in] IDataObject *pDataObject);
920 HRESULT InitializeFromWindow(
923 [in] IDataObject *pDataObject);
927 /*****************************************************************************
928 * IDropTargetHelper interface
932 uuid(4657278b-411b-11d2-839a-00c04fd918d0),
933 pointer_default(unique)
935 interface IDropTargetHelper : IUnknown
938 [in] HWND hwndTarget,
939 [in] IDataObject *pDataObject,
941 [in] DWORD dwEffect);
947 [in] DWORD dwEffect);
950 [in] IDataObject *pDataObject,
952 [in] DWORD dwEffect);
954 HRESULT Show( [in] BOOL fShow );
958 /*****************************************************************************
959 * IContextMenu interface
963 uuid(000214e4-0000-0000-c000-000000000046),
964 pointer_default(unique),
967 interface IContextMenu : IUnknown
969 cpp_quote("#define CMF_NORMAL 0x00000000")
970 cpp_quote("#define CMF_DEFAULTONLY 0x00000001")
971 cpp_quote("#define CMF_VERBSONLY 0x00000002")
972 cpp_quote("#define CMF_EXPLORE 0x00000004")
973 cpp_quote("#define CMF_NOVERBS 0x00000008")
974 cpp_quote("#define CMF_CANRENAME 0x00000010")
975 cpp_quote("#define CMF_NODEFAULT 0x00000020")
976 cpp_quote("#define CMF_INCLUDESTATIC 0x00000040")
977 cpp_quote("#define CMF_EXTENDEDVERBS 0x00000100")
978 cpp_quote("#define CMF_RESERVED 0xffff0000")
980 cpp_quote("#define GCS_VERBA 0x00000000")
981 cpp_quote("#define GCS_HELPTEXTA 0x00000001")
982 cpp_quote("#define GCS_VALIDATEA 0x00000002")
983 cpp_quote("#define GCS_VERBW 0x00000004")
984 cpp_quote("#define GCS_HELPTEXTW 0x00000005")
985 cpp_quote("#define GCS_VALIDATEW 0x00000006")
986 cpp_quote("#define GCS_UNICODE 0x00000004")
987 cpp_quote("#define GCS_VERB WINELIB_NAME_AW(GCS_VERB)")
988 cpp_quote("#define GCS_HELPTEXT WINELIB_NAME_AW(GCS_HELPTEXT)")
989 cpp_quote("#define GCS_VALIDATE WINELIB_NAME_AW(GCS_VALIDATE)")
991 cpp_quote("#define CMDSTR_NEWFOLDERA \"NewFolder\"")
992 cpp_quote("#define CMDSTR_VIEWLISTA \"ViewList\"")
993 cpp_quote("#define CMDSTR_VIEWDETAILSA \"ViewDetails\"")
994 cpp_quote("#if defined(__GNUC__)")
995 cpp_quote("# define CMDSTR_NEWFOLDERW (const WCHAR []){ 'N','e','w','F','o','l','d','e','r',0 }")
996 cpp_quote("# define CMDSTR_VIEWLISTW (const WCHAR []){ 'V','i','e','w','L','i','s','t',0 }")
997 cpp_quote("# define CMDSTR_VIEWDETAILSW (const WCHAR []){ 'V','i','e','w','D','e','t','a','i','l','s',0 }")
998 cpp_quote("#elif defined(_MSC_VER)")
999 cpp_quote("# define CMDSTR_NEWFOLDERW L\"NewFolder\"")
1000 cpp_quote("# define CMDSTR_VIEWLISTW L\"ViewList\"")
1001 cpp_quote("# define CMDSTR_VIEWDETAILSW L\"ViewDetails\"")
1003 cpp_quote("static const WCHAR CMDSTR_NEWFOLDERW[] = {'N','e','w','F','o','l','d','e','r',0};")
1004 cpp_quote("static const WCHAR CMDSTR_VIEWLISTW [] = {'V','i','e','w','L','i','s','t',0};")
1005 cpp_quote("static const WCHAR CMDSTR_VIEWDETAILSW[] = {'V','i','e','w','D','e','t','a','i','l','s',0};")
1007 cpp_quote("#define CMDSTR_NEWFOLDER WINELIB_NAME_AW(CMDSTR_NEWFOLDER)")
1008 cpp_quote("#define CMDSTR_VIEWLIST WINELIB_NAME_AW(CMDSTR_VIEWLIST)")
1009 cpp_quote("#define CMDSTR_VIEWDETAILS WINELIB_NAME_AW(CMDSTR_VIEWDETAILS)")
1011 cpp_quote("#define CMIC_MASK_HOTKEY SEE_MASK_HOTKEY")
1012 cpp_quote("#define CMIC_MASK_ICON SEE_MASK_ICON")
1013 cpp_quote("#define CMIC_MASK_FLAG_NO_UI SEE_MASK_FLAG_NO_UI")
1014 cpp_quote("#define CMIC_MASK_UNICODE SEE_MASK_UNICODE")
1015 cpp_quote("#define CMIC_MASK_NO_CONSOLE SEE_MASK_NO_CONSOLE")
1016 cpp_quote("#define CMIC_MASK_HASLINKNAME SEE_MASK_HASLINKNAME")
1017 cpp_quote("#define CMIC_MASK_FLAG_SEP_VDM SEE_MASK_FLAG_SEPVDM")
1018 cpp_quote("#define CMIC_MASK_HASTITLE SEE_MASK_HASTITLE")
1019 cpp_quote("#define CMIC_MASK_ASYNCOK SEE_MASK_ASYNCOK")
1020 cpp_quote("#define CMIC_MASK_SHIFT_DOWN 0x10000000")
1021 cpp_quote("#define CMIC_MASK_PTINVOKE 0x20000000")
1022 cpp_quote("#define CMIC_MASK_CONTROL_DOWN 0x40000000")
1023 cpp_quote("#define CMIC_MASK_FLAG_LOG_USAGE SEE_MASK_FLAG_LOG_USAGE")
1024 cpp_quote("#define CMIC_MASK_NOZONECHECKS SEE_MASK_NOZONECHECKS")
1026 typedef IContextMenu *LPCONTEXTMENU;
1028 typedef struct tagCMINVOKECOMMANDINFO
1034 LPCSTR lpParameters;
1039 } CMINVOKECOMMANDINFO, *LPCMINVOKECOMMANDINFO;
1041 typedef struct tagCMInvokeCommandInfoEx
1047 LPCSTR lpParameters;
1054 LPCWSTR lpParametersW;
1055 LPCWSTR lpDirectoryW;
1058 } CMINVOKECOMMANDINFOEX, *LPCMINVOKECOMMANDINFOEX;
1060 HRESULT QueryContextMenu(
1062 [in] UINT indexMenu,
1063 [in] UINT idCmdFirst,
1064 [in] UINT idCmdLast,
1067 HRESULT InvokeCommand( [in] LPCMINVOKECOMMANDINFO lpici );
1069 HRESULT GetCommandString(
1070 [in] UINT_PTR idCmd,
1072 [out] UINT *pwReserved,
1073 [out, size_is(cchMax)] LPSTR pszName,
1078 /*****************************************************************************
1079 * IContextMenu2 interface
1083 uuid(000214f4-0000-0000-c000-000000000046),
1084 pointer_default(unique)
1086 interface IContextMenu2 : IContextMenu
1088 typedef IContextMenu2 *LPCONTEXTMENU2;
1090 HRESULT HandleMenuMsg(
1093 [in] LPARAM lParam);
1097 /*****************************************************************************
1098 * IContextMenu3 interface
1102 uuid(bcfce0a0-ec17-11d0-8d10-00a0c90f2719),
1103 pointer_default(unique)
1105 interface IContextMenu3 : IContextMenu2
1107 typedef IContextMenu3 *LPCONTEXTMENU3;
1109 HRESULT HandleMenuMsg2(
1113 [out] LRESULT *plResult);
1117 /*****************************************************************************
1118 * IShellExecuteHookA interface
1122 uuid(000214f5-0000-0000-c000-000000000046),
1123 pointer_default(unique),
1126 interface IShellExecuteHookA : IUnknown
1128 cpp_quote("struct _SHELLEXECUTEINFOA;")
1130 [in, out] struct _SHELLEXECUTEINFOA* pei);
1134 /*****************************************************************************
1135 * IShellExecuteHookW interface
1139 uuid(000214fb-0000-0000-c000-000000000046),
1140 pointer_default(unique),
1143 interface IShellExecuteHookW : IUnknown
1145 cpp_quote("struct _SHELLEXECUTEINFOW;")
1147 [in, out] struct _SHELLEXECUTEINFOW* pei);
1150 /*****************************************************************************
1151 * IShellLinkDataList interface
1155 uuid(45e2b4ae-b1c3-11d0-b92f-00a0c90312e1),
1156 pointer_default(unique)
1158 interface IShellLinkDataList : IUnknown
1160 [local] HRESULT AddDataBlock(
1161 [in] void *pDataBlock);
1162 [local] HRESULT CopyDataBlock(
1164 [out] void **ppDataBlock);
1165 HRESULT RemoveDataBlock(
1168 [out] DWORD *pdwFlags);
1170 [in] DWORD dwFlags);
1174 /*****************************************************************************
1175 * IResolveShellLink interface
1179 uuid(5cd52983-9449-11d2-963a-00c04f79adf0),
1180 pointer_default(unique)
1182 interface IResolveShellLink : IUnknown
1184 HRESULT ResolveShellLink(
1185 [in] IUnknown *punk,
1191 /*****************************************************************************
1192 * IURLSearchHook interface
1196 uuid(ac60f6a0-0fd9-11d0-99cb-00c04fd64497),
1197 pointer_default(unique)
1199 interface IURLSearchHook : IUnknown
1202 [in, out] LPWSTR lpwszSearchURL,
1203 [in] DWORD cchBufferSize);
1207 /*****************************************************************************
1208 * ISearchContext interface
1212 uuid(09f656a2-41af-480c-88f7-16cc0d164615),
1213 pointer_default(unique)
1215 interface ISearchContext : IUnknown
1217 HRESULT GetSearchUrl(
1218 [in] BSTR *pbstrSearchUrl);
1219 HRESULT GetSearchText(
1220 [in] BSTR *pbstrSearchText);
1221 HRESULT GetSearchStyle(
1222 [in] BSTR *pdwSearchStyle);
1226 /*****************************************************************************
1227 * IURLSearchHook2 interface
1231 uuid(5ee44da4-6d32-46e3-86bc-07540dedd0e0),
1232 pointer_default(unique)
1234 interface IURLSearchHook2 : IURLSearchHook
1236 HRESULT TranslateWithSearchContext(
1237 [in, out] LPWSTR lpwszSearchURL,
1238 [in] DWORD cchBufferSize,
1239 [in] ISearchContext *pSearchContext);
1243 cpp_quote("#define INewShortcutHook WINELIB_NAME_AW(INewShortcutHook)")
1245 /*****************************************************************************
1246 * INewShortcutHookA interface
1250 uuid(000214e1-0000-0000-c000-000000000046),
1251 pointer_default(unique),
1254 interface INewShortcutHookA : IUnknown
1256 HRESULT SetReferent(
1257 [in] LPCSTR pcszReferent,
1259 HRESULT GetReferent(
1260 [out] LPCSTR pcszReferent,
1261 [in] int cchReferent);
1263 [in] LPCSTR pcszReferent);
1265 [out] LPSTR pcszReferent,
1266 [in] int cchFolder);
1268 [out] LPSTR pszName,
1270 HRESULT GetExtension(
1271 [out] LPSTR pszExtension,
1272 [in] int cchExtension);
1276 /*****************************************************************************
1277 * INewShortcutHookW interface
1281 uuid(000214f7-0000-0000-c000-000000000046),
1282 pointer_default(unique),
1285 interface INewShortcutHookW : IUnknown
1287 HRESULT SetReferent(
1288 [in] LPCWSTR pcszReferent,
1290 HRESULT GetReferent(
1291 [out] LPCWSTR pcszReferent,
1292 [in] int cchReferent);
1294 [in] LPCWSTR pcszReferent);
1296 [out] LPWSTR pcszReferent,
1297 [in] int cchFolder);
1299 [out] LPWSTR pszName,
1301 HRESULT GetExtension(
1302 [out] LPWSTR pszExtension,
1303 [in] int cchExtension);
1306 /*****************************************************************************
1307 * IRunnableTask interface
1311 uuid(85788d00-6807-11d0-b810-00c04fd706ec),
1312 pointer_default(unique),
1315 interface IRunnableTask : IUnknown
1318 HRESULT Kill([in] BOOL fWait);
1324 /*****************************************************************************
1325 * IShellChangeNotify interface
1329 uuid(d82be2b1-5764-11d0-a96e-00c04fd705a2),
1330 pointer_default(unique)
1332 interface IShellChangeNotify : IUnknown
1336 [in] LPCITEMIDLIST pidl1,
1337 [in] LPCITEMIDLIST pidl2);
1340 /*****************************************************************************
1341 * IFileSystemBindData interface
1345 uuid(01e18d10-4d8b-11d2-855d-006008059367),
1346 pointer_default(unique)
1348 interface IFileSystemBindData : IUnknown
1350 HRESULT SetFindData(
1351 [in] const WIN32_FIND_DATAW *pfd);
1352 HRESULT GetFindData(
1353 [out] WIN32_FIND_DATAW *pfd);
1356 /*****************************************************************************
1357 * ITaskbarList interface
1361 uuid(56FDF342-FD6D-11d0-958A-006097C9A090),
1362 pointer_default(unique)
1364 interface ITaskbarList : IUnknown
1374 HRESULT ActivateTab(
1377 HRESULT SetActiveAlt(
1381 /*****************************************************************************
1382 * IAutoCompleteDropDown interface
1386 uuid(3CD141F4-3C6A-11d2-BCAA-00C04FD929DB),
1387 pointer_default(unique)
1389 interface IAutoCompleteDropDown : IUnknown
1391 cpp_quote("#define ACDD_VISIBLE 0x0001")
1393 HRESULT GetDropDownStatus(
1394 [out] DWORD *pdwFlags,
1395 [out, string] LPWSTR *ppwszString);
1397 HRESULT ResetEnumerator();