Move the PROPVARIANT declaration from objidl.idl to propidl.idl.
[wine/multimedia.git] / include / shobjidl.idl
blob34e670c5979ba816726e64667e1683577fe857dd
1 /*
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 import "objidl.idl";
23 import "oleidl.idl";
24 import "oaidl.idl";
25 import "shtypes.idl";
26 import "servprov.idl";
27 import "comcat.idl";
28 import "propidl.idl";
29 /*import "prsht.idl";*/
30 /*import "msxml.idl";*/
33 /*****************************************************************************
34 * IPersistFolder interface
37 object,
38 uuid(000214ea-0000-0000-c000-000000000046),
39 pointer_default(unique)
41 interface IPersistFolder : IPersist
43 typedef IPersistFolder *LPPERSISTFOLDER;
45 HRESULT Initialize( [in] LPCITEMIDLIST pidl );
49 /*****************************************************************************
50 * IPersistFolder2 interface
53 object,
54 uuid(1ac3d9f0-175c-11d1-95be-00609797ea4f),
55 pointer_default(unique)
57 interface IPersistFolder2 : IPersistFolder
59 typedef IPersistFolder2 *LPPERSISTFOLDER2;
61 HRESULT GetCurFolder( [out] LPITEMIDLIST *ppidl );
65 /*****************************************************************************
66 * IEnumIDList interface
69 object,
70 uuid(000214f2-0000-0000-c000-000000000046),
71 pointer_default(unique)
73 interface IEnumIDList : IUnknown
75 typedef IEnumIDList *LPENUMIDLIST;
77 HRESULT Next(
78 [in] ULONG celt,
79 [out, size_is(celt), length_is(*pceltFetched)] LPITEMIDLIST *rgelt,
80 [out] ULONG *pceltFetched);
82 HRESULT Skip( [in] ULONG celt );
83 HRESULT Reset();
84 HRESULT Clone( [out] IEnumIDList **ppenum );
88 /*****************************************************************************
89 * IShellFolder interface
92 object,
93 uuid(000214e6-0000-0000-c000-000000000046),
94 pointer_default(unique)
96 interface IShellFolder : IUnknown
98 typedef IShellFolder * LPSHELLFOLDER;
100 typedef enum tagSHGDN
102 SHGDN_NORMAL = 0,
103 SHGDN_INFOLDER = 1,
104 SHGDN_FOREDITING = 0x1000,
105 SHGDN_INCLUDE_NONFILESYS = 0x2000,
106 SHGDN_FORADDRESSBAR = 0x4000,
107 SHGDN_FORPARSING = 0x8000
108 } SHGNO;
110 typedef DWORD SHGDNF;
112 enum tagSHCONTF
114 SHCONTF_FOLDERS = 32,
115 SHCONTF_NONFOLDERS = 64,
116 SHCONTF_INCLUDEHIDDEN = 128,
117 SHCONTF_INIT_ON_FIRST_NEXT = 256,
118 SHCONTF_NETPRINTERSRCH = 512,
119 SHCONTF_SHAREABLE = 1024,
120 SHCONTF_STORAGE = 2048
123 typedef DWORD SHCONTF;
125 cpp_quote("#define SFGAO_CANCOPY DROPEFFECT_COPY")
126 cpp_quote("#define SFGAO_CANMOVE DROPEFFECT_MOVE")
127 cpp_quote("#define SFGAO_CANLINK DROPEFFECT_LINK")
128 cpp_quote("#define SFGAO_CANRENAME 0x00000010L")
129 cpp_quote("#define SFGAO_CANDELETE 0x00000020L")
130 cpp_quote("#define SFGAO_HASPROPSHEET 0x00000040L")
131 cpp_quote("#define SFGAO_DROPTARGET 0x00000100L")
132 cpp_quote("#define SFGAO_CAPABILITYMASK 0x00000177L")
133 cpp_quote("#define SFGAO_LINK 0x00010000L")
134 cpp_quote("#define SFGAO_SHARE 0x00020000L")
135 cpp_quote("#define SFGAO_READONLY 0x00040000L")
136 cpp_quote("#define SFGAO_GHOSTED 0x00080000L")
137 cpp_quote("#define SFGAO_HIDDEN 0x00080000L")
138 cpp_quote("#define SFGAO_DISPLAYATTRMASK 0x000F0000L")
139 cpp_quote("#define SFGAO_FILESYSANCESTOR 0x10000000L")
140 cpp_quote("#define SFGAO_FOLDER 0x20000000L")
141 cpp_quote("#define SFGAO_FILESYSTEM 0x40000000L")
142 cpp_quote("#define SFGAO_HASSUBFOLDER 0x80000000L")
143 cpp_quote("#define SFGAO_CONTENTSMASK 0x80000000L")
144 cpp_quote("#define SFGAO_VALIDATE 0x01000000L")
145 cpp_quote("#define SFGAO_REMOVABLE 0x02000000L")
146 cpp_quote("#define SFGAO_COMPRESSED 0x04000000L")
147 cpp_quote("#define SFGAO_BROWSABLE 0x08000000L")
148 cpp_quote("#define SFGAO_NONENUMERATED 0x00100000L")
149 cpp_quote("#define SFGAO_NEWCONTENT 0x00200000L")
151 typedef ULONG SFGAOF;
153 HRESULT ParseDisplayName(
154 [in] HWND hwndOwner,
155 [in] LPBC pbcReserved,
156 [in, string] LPOLESTR lpszDisplayName,
157 [out] ULONG *pchEaten,
158 [out] LPITEMIDLIST *ppidl,
159 [in, out, unique] ULONG *pdwAttributes);
161 HRESULT EnumObjects(
162 [in] HWND hwndOwner,
163 [in] SHCONTF grfFlags,
164 [out] IEnumIDList **ppenumIDList);
166 HRESULT BindToObject(
167 [in] LPCITEMIDLIST pidl,
168 [in] LPBC pbcReserved,
169 [in] REFIID riid,
170 [out, iid_is(riid)] void **ppvOut);
172 HRESULT BindToStorage(
173 [in] LPCITEMIDLIST pidl,
174 [in] LPBC pbcReserved,
175 [in] REFIID riid,
176 [out, iid_is(riid)] void **ppvObj);
178 HRESULT CompareIDs(
179 [in] LPARAM lParam,
180 [in] LPCITEMIDLIST pidl1,
181 [in] LPCITEMIDLIST pidl2);
183 HRESULT CreateViewObject(
184 [in] HWND hwndOwner,
185 [in] REFIID riid,
186 [out, iid_is(riid)] void **ppvOut);
188 HRESULT GetAttributesOf(
189 [in] UINT cidl,
190 [in, size_is(cidl)] LPCITEMIDLIST *apidl,
191 [in, out] SFGAOF *rgfInOut);
193 HRESULT GetUIObjectOf(
194 [in] HWND hwndOwner,
195 [in] UINT cidl,
196 [in, size_is(cidl)] LPCITEMIDLIST *apidl,
197 [in] REFIID riid,
198 [in, out, unique] UINT *prgfInOut,
199 [out, iid_is(riid)] void **ppvOut);
201 HRESULT GetDisplayNameOf(
202 [in] LPCITEMIDLIST pidl,
203 [in] SHGDNF uFlags,
204 [out] STRRET *lpName);
206 HRESULT SetNameOf(
207 [in] HWND hwnd,
208 [in] LPCITEMIDLIST pidl,
209 [in, string] LPCOLESTR lpszName,
210 [in] SHGDNF uFlags,
211 [out] LPITEMIDLIST *ppidlOut);
215 /*****************************************************************************
216 * IEnumExtraSearch interface
219 object,
220 uuid(0e700be1-9db6-11d1-a1ce-00c04fd75d13),
221 pointer_default(unique)
223 interface IEnumExtraSearch : IUnknown
225 typedef IEnumExtraSearch *LPENUMEXTRASEARCH;
227 typedef struct
229 GUID guidSearch;
230 WCHAR wszFriendlyName[80];
232 *WCHAR wszMenuText[80];
233 *WCHAR wszHelpText[MAX_PATH];
235 WCHAR wszUrl[2084];
237 *WCHAR wszIcon[MAX_PATH+10];
238 *WCHAR wszGreyIcon[MAX_PATH+10];
239 *WCHAR wszClrIcon[MAX_PATH+10];
241 } EXTRASEARCH, *LPEXTRASEARCH;
243 HRESULT Next(
244 [in] ULONG celt,
245 [out, size_is(celt), length_is(*pceltFetched)] EXTRASEARCH *rgelt,
246 [out] ULONG *pceltFetched);
248 HRESULT Skip( [in] ULONG celt );
249 HRESULT Reset();
250 HRESULT Clone( [out] IEnumExtraSearch **ppenum );
254 /*****************************************************************************
255 * IShellFolder2 interface
258 object,
259 uuid(93f2f68c-1d1b-11d3-a30e-00c04f79abd1),
260 pointer_default(unique)
262 interface IShellFolder2 : IShellFolder
264 typedef enum
266 SHCOLSTATE_TYPE_STR = 0x00000001,
267 SHCOLSTATE_TYPE_INT = 0x00000002,
268 SHCOLSTATE_TYPE_DATE = 0x00000003,
269 SHCOLSTATE_TYPEMASK = 0x0000000f,
270 SHCOLSTATE_ONBYDEFAULT = 0x00000010,
271 SHCOLSTATE_SLOW = 0x00000020,
272 SHCOLSTATE_EXTENDED = 0x00000040,
273 SHCOLSTATE_SECONDARYUI = 0x00000080,
274 SHCOLSTATE_HIDDEN = 0x00000100,
275 SHCOLSTATE_PREFER_VARCMP = 0x00000200
276 } SHCOLSTATE;
278 typedef DWORD SHCOLSTATEF;
280 typedef struct
282 GUID fmtid;
283 DWORD pid;
284 } SHCOLUMNID, *LPSHCOLUMNID;
285 typedef const SHCOLUMNID *LPCSHCOLUMNID;
287 HRESULT GetDefaultSearchGUID( [out] GUID *lpguid );
288 HRESULT EnumSearches( [out] IEnumExtraSearch **ppenum );
289 HRESULT GetDefaultColumn( [in] DWORD dwReserved, [out] ULONG *pSort, [out] ULONG *pDisplay );
290 HRESULT GetDefaultColumnState( [in] UINT iColumn, [out] SHCOLSTATEF *pcsFlags );
291 HRESULT GetDetailsEx( [in] LPCITEMIDLIST pidl, [in] const SHCOLUMNID *pscid, [out] VARIANT *pv);
292 HRESULT GetDetailsOf( [in] LPCITEMIDLIST pidl, [in] UINT iColumn, [out] SHELLDETAILS *psd);
293 HRESULT MapColumnToSCID( [in] UINT iColumn, [in] SHCOLUMNID *pscid );
298 /*****************************************************************************
299 * FOLDERSETTINGS
301 typedef char *LPVIEWSETTINGS;
303 typedef enum
305 FWF_AUTOARRANGE = 0x00000001,
306 FWF_ABBREVIATEDNAMES = 0x00000002,
307 FWF_SNAPTOGRID = 0x00000004,
308 FWF_OWNERDATA = 0x00000008,
309 FWF_BESTFITWINDOW = 0x00000010,
310 FWF_DESKTOP = 0x00000020,
311 FWF_SINGLESEL = 0x00000040,
312 FWF_NOSUBFOLDERS = 0x00000080,
313 FWF_TRANSPARENT = 0x00000100,
314 FWF_NOCLIENTEDGE = 0x00000200,
315 FWF_NOSCROLL = 0x00000400,
316 FWF_ALIGNLEFT = 0x00000800,
317 FWF_NOICONS = 0x00001000,
318 FWF_SHOWSELALWAYS = 0x00002000,
319 FWF_NOVISIBLE = 0x00004000,
320 FWF_SINGLECLICKACTIVATE = 0x00008000,
321 FWF_NOWEBVIEW = 0x00010000,
322 FWF_HIDEFILENAMES = 0x00020000,
323 FWF_CHECKSELECT = 0x00040000
324 } FOLDERFLAGS;
326 typedef enum
328 FVM_ICON = 1,
329 FVM_FIRST = FVM_ICON,
330 FVM_SMALLICON = 2,
331 FVM_LIST = 3,
332 FVM_DETAILS = 4,
333 FVM_THUMBNAIL = 5,
334 FVM_TILE = 6,
335 FVM_THUMBSTRIP = 7,
336 FVM_LAST = FVM_THUMBSTRIP
337 } FOLDERVIEWMODE;
339 typedef struct
341 UINT ViewMode;
342 UINT fFlags;
343 } FOLDERSETTINGS, *PFOLDERSETTINGS, *LPFOLDERSETTINGS;
344 typedef const FOLDERSETTINGS *LPCFOLDERSETTINGS;
347 /*****************************************************************************
348 * IShellView interface
350 interface IShellBrowser; /* forward declaration */
352 object,
353 uuid(000214e3-0000-0000-c000-000000000046),
354 pointer_default(unique)
356 interface IShellView : IOleWindow
358 typedef IShellView *LPSHELLVIEW;
360 cpp_quote("#define SVSI_DESELECT 0x00000000")
361 cpp_quote("#define SVSI_SELECT 0x00000001")
362 cpp_quote("#define SVSI_EDIT 0x00000003")
363 cpp_quote("#define SVSI_DESELECTOTHERS 0x00000004")
364 cpp_quote("#define SVSI_ENSUREVISIBLE 0x00000008")
365 cpp_quote("#define SVSI_FOCUSED 0x00000010")
366 cpp_quote("#define SVSI_TRANSLATEPT 0x00000020")
367 cpp_quote("#define SVSI_SELECTIONMARK 0x00000040")
368 cpp_quote("#define SVSI_POSITIONITEM 0x00000080")
369 cpp_quote("#define SVSI_CHECK 0x00000100")
370 cpp_quote("#define SVSI_NOSTATECHANGE 0x80000000")
372 typedef UINT SVSIF;
374 typedef enum
376 SVGIO_BACKGROUND = 0x00000000,
377 SVGIO_SELECTION = 0x00000001,
378 SVGIO_ALLVIEW = 0x00000002,
379 SVGIO_CHECKED = 0x00000003,
380 SVGIO_TYPE_MASK = 0x0000000f,
381 SVGIO_FLAG_VIEWORDER = 0x80000000,
382 } SVGIO;
384 typedef enum
386 SVUIA_DEACTIVATE = 0,
387 SVUIA_ACTIVATE_NOFOCUS = 1,
388 SVUIA_ACTIVATE_FOCUS = 2,
389 SVUIA_INPLACEACTIVATE = 3
390 } SVUIA_STATUS;
392 cpp_quote("#if 0")
393 typedef LPARAM LPFNSVADDPROPSHEETPAGE;
394 cpp_quote("#else")
395 cpp_quote("#include <prsht.h>")
396 cpp_quote("typedef LPFNADDPROPSHEETPAGE LPFNSVADDPROPSHEETPAGE;")
397 cpp_quote("#endif")
399 HRESULT TranslateAccelerator( [in] MSG *pmsg );
400 HRESULT EnableModeless( [in] BOOL fEnable );
401 HRESULT UIActivate( [in] UINT uState );
402 HRESULT Refresh();
403 HRESULT CreateViewWindow(
404 [in] IShellView *psvPrevious,
405 [in] LPCFOLDERSETTINGS lpfs,
406 [in] IShellBrowser *psb,
407 [out] RECT *prcView,
408 [out] HWND *phWnd);
410 HRESULT DestroyViewWindow();
411 HRESULT GetCurrentInfo( [out] LPFOLDERSETTINGS lpfs );
413 [local] HRESULT AddPropertySheetPages(
414 [in] DWORD dwReserved,
415 [in] LPFNSVADDPROPSHEETPAGE pfn,
416 [in] LPARAM lparam);
418 HRESULT SaveViewState();
419 HRESULT SelectItem(
420 [in] LPCITEMIDLIST pidlItem,
421 [in] SVSIF uFlags);
422 HRESULT GetItemObject(
423 [in] UINT uItem,
424 [in] REFIID riid,
425 [out, iid_is(riid)] void **ppv);
429 /*****************************************************************************
430 * IShellBrowser interface
433 object,
434 uuid(000214e2-0000-0000-c000-000000000046),
435 pointer_default(unique)
437 interface IShellBrowser : IOleWindow
439 typedef IShellBrowser *LPSHELLBROWSER;
441 cpp_quote("#define SBSP_DEFBROWSER 0x00000000")
442 cpp_quote("#define SBSP_SAMEBROWSER 0x00000001")
443 cpp_quote("#define SBSP_NEWBROWSER 0x00000002")
444 cpp_quote("#define SBSP_DEFMODE 0x00000000")
445 cpp_quote("#define SBSP_OPENMODE 0x00000010")
446 cpp_quote("#define SBSP_EXPLOREMODE 0x00000020")
447 cpp_quote("#define SBSP_HELPMODE 0x00000040")
448 cpp_quote("#define SBSP_NOTRANSFERHIST 0x00000080")
449 cpp_quote("#define SBSP_ABSOLUTE 0x00000000")
450 cpp_quote("#define SBSP_RELATIVE 0x00001000")
451 cpp_quote("#define SBSP_PARENT 0x00002000")
452 cpp_quote("#define SBSP_NAVIGATEBACK 0x00004000")
453 cpp_quote("#define SBSP_NAVIGATEFORWARD 0x00008000")
454 cpp_quote("#define SBSP_ALLOW_AUTONAVIGATE 0x00010000")
455 cpp_quote("#define SBSP_NOAUTOSELECT 0x04000000")
456 cpp_quote("#define SBSP_WRITENOHISTORY 0x08000000")
457 cpp_quote("#define SBSP_REDIRECT 0x40000000")
458 cpp_quote("#define SBSP_INITIATEDBYHLINKFRAME 0x80000000")
460 cpp_quote("#define FCW_STATUS 0x0001")
461 cpp_quote("#define FCW_TOOLBAR 0x0002")
462 cpp_quote("#define FCW_TREE 0x0003")
463 cpp_quote("#define FCW_INTERNETBAR 0x0006")
464 cpp_quote("#define FCW_PROGRESS 0x0008")
466 cpp_quote("#define FCT_MERGE 0x0001")
467 cpp_quote("#define FCT_CONFIGABLE 0x0002")
468 cpp_quote("#define FCT_ADDTOEND 0x0004")
470 cpp_quote("#if 0")
471 typedef LPARAM LPTBBUTTONSB;
472 cpp_quote("#else")
473 cpp_quote("#include <commctrl.h>")
474 cpp_quote("typedef LPTBBUTTON LPTBBUTTONSB;")
475 cpp_quote("#endif")
477 HRESULT InsertMenusSB(
478 [in] HMENU hmenuShared,
479 [in, out] LPOLEMENUGROUPWIDTHS lpMenuWidths);
481 HRESULT SetMenuSB(
482 [in] HMENU hmenuShared,
483 [in] HOLEMENU holemenuReserved,
484 [in] HWND hwndActiveObject);
486 HRESULT RemoveMenusSB( [in] HMENU hmenuShared );
487 HRESULT SetStatusTextSB( [in, unique] LPCOLESTR pszStatusText );
488 HRESULT EnableModelessSB( [in] BOOL fEnable );
489 HRESULT TranslateAcceleratorSB( [in] MSG *pmsg, [in] WORD wID );
491 HRESULT BrowseObject(
492 [in] LPCITEMIDLIST pidl,
493 [in] UINT wFlags);
495 HRESULT GetViewStateStream(
496 [in] DWORD grfMode,
497 [out] IStream **ppStrm);
499 HRESULT GetControlWindow(
500 [in] UINT id,
501 [out] HWND *phwnd);
503 [local] HRESULT SendControlMsg(
504 [in] UINT id,
505 [in] UINT uMsg,
506 [in] WPARAM wParam,
507 [in] LPARAM lParam,
508 [in] LRESULT *pret);
510 HRESULT QueryActiveShellView( [out] IShellView **ppshv );
511 HRESULT OnViewWindowActive( [in] IShellView *pshv );
513 [local]
514 HRESULT SetToolbarItems(
515 [in] LPTBBUTTONSB lpButtons,
516 [in] UINT nButtons,
517 [in] UINT uFlags);
521 /*****************************************************************************
522 * IShellLinkA interface
525 object,
526 uuid(000214ee-0000-0000-c000-000000000046),
527 pointer_default(unique)
529 interface IShellLinkA : IUnknown
531 typedef enum
533 SLR_NO_UI = 0x0001,
534 SLR_ANY_MATCH = 0x0002,
535 SLR_UPDATE = 0x0004,
536 SLR_NOUPDATE = 0x0008,
537 SLR_NOSEARCH = 0x0010,
538 SLR_NOTRACK = 0x0020,
539 SLR_NOLINKINFO = 0x0040,
540 SLR_INVOKE_MSI = 0x0080,
541 SLR_NO_UI_WITH_MSG_PUMP = 0x0101,
542 } SLR_FLAGS;
544 typedef enum
546 SLGP_SHORTPATH = 0x0001,
547 SLGP_UNCPRIORITY = 0x0002,
548 SLGP_RAWPATH = 0x0004,
549 } SLGP_FLAGS;
551 HRESULT GetPath(
552 [out, size_is(cch)] LPSTR pszFile,
553 [in] int cch,
554 [in, out] WIN32_FIND_DATAA *pfd,
555 [in] DWORD fFlags);
557 HRESULT GetIDList( [out] LPITEMIDLIST * ppidl );
559 HRESULT SetIDList( [in] LPCITEMIDLIST pidl );
561 HRESULT GetDescription(
562 [out, size_is(cch)] LPSTR pszName,
563 [in] int cch);
565 HRESULT SetDescription( [in] LPCSTR pszName );
567 HRESULT GetWorkingDirectory(
568 [out, size_is(cch)] LPSTR pszDir,
569 [in] int cch);
571 HRESULT SetWorkingDirectory( [in] LPCSTR pszDir );
573 HRESULT GetArguments(
574 [out, size_is(cch)] LPSTR pszArgs,
575 [in] int cch);
577 HRESULT SetArguments( [in] LPCSTR pszArgs );
579 HRESULT GetHotkey( [out] WORD *pwHotkey );
581 HRESULT SetHotkey( [in] WORD wHotkey );
583 HRESULT GetShowCmd( [out] int *piShowCmd );
585 HRESULT SetShowCmd( [in] int iShowCmd );
587 HRESULT GetIconLocation(
588 [out, size_is(cch)] LPSTR pszIconPath,
589 [in] int cch,
590 [out] int *piIcon);
592 HRESULT SetIconLocation(
593 [in] LPCSTR pszIconPath,
594 [in] int iIcon);
596 HRESULT SetRelativePath(
597 [in] LPCSTR pszPathRel,
598 [in] DWORD dwReserved);
600 HRESULT Resolve(
601 [in] HWND hwnd,
602 [in] DWORD fFlags);
604 HRESULT SetPath( [in] LPCSTR pszFile );
608 /*****************************************************************************
609 * IShellLinkW interface
612 object,
613 uuid(000214f9-0000-0000-c000-000000000046),
614 pointer_default(unique)
616 interface IShellLinkW : IUnknown
618 HRESULT GetPath(
619 [out, size_is(cch)] LPWSTR pszFile,
620 [in] int cch,
621 [in, out] WIN32_FIND_DATAW *pfd,
622 [in] DWORD fFlags);
624 HRESULT GetIDList( [out] LPITEMIDLIST * ppidl );
626 HRESULT SetIDList( [in] LPCITEMIDLIST pidl );
628 HRESULT GetDescription(
629 [out, size_is(cch)] LPWSTR pszName,
630 [in] int cch);
632 HRESULT SetDescription( [in] LPCWSTR pszName );
634 HRESULT GetWorkingDirectory(
635 [out, size_is(cch)] LPWSTR pszDir,
636 [in] int cch);
638 HRESULT SetWorkingDirectory( [in] LPCWSTR pszDir );
640 HRESULT GetArguments(
641 [out, size_is(cch)] LPWSTR pszArgs,
642 [in] int cch);
644 HRESULT SetArguments( [in] LPCWSTR pszArgs );
646 HRESULT GetHotkey( [out] WORD *pwHotkey );
648 HRESULT SetHotkey( [in] WORD wHotkey );
650 HRESULT GetShowCmd( [out] int *piShowCmd );
652 HRESULT SetShowCmd( [in] int iShowCmd );
654 HRESULT GetIconLocation(
655 [out, size_is(cch)] LPWSTR pszIconPath,
656 [in] int cch,
657 [out] int *piIcon);
659 HRESULT SetIconLocation(
660 [in] LPCWSTR pszIconPath,
661 [in] int iIcon);
663 HRESULT SetRelativePath(
664 [in] LPCWSTR pszPathRel,
665 [in] DWORD dwReserved);
667 HRESULT Resolve(
668 [in] HWND hwnd,
669 [in] DWORD fFlags);
671 HRESULT SetPath( [in] LPCWSTR pszFile );
674 cpp_quote("#define IShellLink WINELIB_NAME_AW(IShellLink)")
677 /*****************************************************************************
678 * IShellExtInit interface
681 object,
682 uuid(000214e8-0000-0000-c000-000000000046),
683 pointer_default(unique)
685 interface IShellExtInit : IUnknown
687 typedef IShellExtInit *LPSHELLEXTINIT;
689 HRESULT Initialize(
690 [in] LPCITEMIDLIST pidlFolder,
691 [in] IDataObject *pdtobj,
692 [in] HKEY hkeyProgID);
696 /*******************************************************************************/
697 /* Note: the following interfaces are not in shobjidl.idl under Windows, they */
698 /* are declared directly in shlobj.h. It hopefully won't break anything to put */
699 /* them here anyway. */
700 /*******************************************************************************/
702 #ifndef MAX_PATH
703 #define MAX_PATH 260
704 #endif
707 /*****************************************************************************
708 * IPersistFolder3 interface
711 object,
712 uuid(cef04fdf-fe72-11d2-87a5-00c04f6837cf),
713 pointer_default(unique)
715 interface IPersistFolder3 : IPersistFolder2
717 typedef struct
719 LPITEMIDLIST pidlTargetFolder;
720 WCHAR szTargetParsingName[MAX_PATH];
721 WCHAR szNetworkProvider[MAX_PATH];
722 DWORD dwAttributes;
723 int csidl;
724 } PERSIST_FOLDER_TARGET_INFO;
726 HRESULT InitializeEx(
727 [in] IBindCtx *pbc,
728 [in] LPCITEMIDLIST pidlRoot,
729 [in] const PERSIST_FOLDER_TARGET_INFO *ppfti);
731 HRESULT GetFolderTargetInfo( [out] PERSIST_FOLDER_TARGET_INFO *ppfti );
735 /*****************************************************************************
736 * IExtractIconA interface
739 object,
740 uuid(000214eb-0000-0000-c000-000000000046),
741 pointer_default(unique)
743 interface IExtractIconA : IUnknown
745 cpp_quote("#define GIL_OPENICON 0x0001")
746 cpp_quote("#define GIL_FORSHELL 0x0002")
747 cpp_quote("#define GIL_ASYNC 0x0020")
748 cpp_quote("#define GIL_DEFAULTICON 0x0040")
749 cpp_quote("#define GIL_FORSHORTCUT 0x0080")
751 cpp_quote("#define GIL_SIMULATEDOC 0x0001")
752 cpp_quote("#define GIL_PERINSTANCE 0x0002")
753 cpp_quote("#define GIL_PERCLASS 0x0004")
754 cpp_quote("#define GIL_NOTFILENAME 0x0008")
755 cpp_quote("#define GIL_DONTCACHE 0x0010")
757 typedef IExtractIconA *LPEXTRACTICONA;
759 HRESULT GetIconLocation(
760 [in] UINT uFlags,
761 [out, size_is(cchMax)] LPSTR szIconFile,
762 [in] UINT cchMax,
763 [out] INT *piIndex,
764 [out] UINT *pwFlags);
766 HRESULT Extract(
767 [in] LPCSTR pszFile,
768 [in] UINT nIconIndex,
769 [out] HICON *phiconLarge,
770 [out] HICON *phiconSmall,
771 [in] UINT nIconSize );
775 /*****************************************************************************
776 * IExtractIconW interface
779 object,
780 uuid(000214fa-0000-0000-c000-000000000046),
781 pointer_default(unique)
783 interface IExtractIconW : IUnknown
785 typedef IExtractIconW *LPEXTRACTICONW;
787 HRESULT GetIconLocation(
788 [in] UINT uFlags,
789 [out, size_is(cchMax)] LPWSTR szIconFile,
790 [in] UINT cchMax,
791 [out] INT *piIndex,
792 [out] UINT *pwFlags);
794 HRESULT Extract(
795 [in] LPCWSTR pszFile,
796 [in] UINT nIconIndex,
797 [out] HICON *phiconLarge,
798 [out] HICON *phiconSmall,
799 [in] UINT nIconSize );
802 cpp_quote("#define LPEXTRACTICON WINELIB_NAME_AW(LPEXTRACTICON)")
803 cpp_quote("#define IExtractIcon WINELIB_NAME_AW(IExtractIcon)")
806 /*****************************************************************************
807 * ICommDlgBrowser interface
810 object,
811 uuid(000214f1-0000-0000-c000-000000000046),
812 pointer_default(unique)
814 interface ICommDlgBrowser : IUnknown
816 cpp_quote("#define CDBOSC_SETFOCUS 0x00000000")
817 cpp_quote("#define CDBOSC_KILLFOCUS 0x00000001")
818 cpp_quote("#define CDBOSC_SELCHANGE 0x00000002")
819 cpp_quote("#define CDBOSC_RENAME 0x00000003")
820 cpp_quote("#define CDBOSC_STATECHANGE 0x00000004")
822 typedef ICommDlgBrowser *LPCOMMDLGBROWSER;
824 HRESULT OnDefaultCommand( [in] IShellView *shv );
825 HRESULT OnStateChange( [in] IShellView *shv, [in] ULONG uChange );
826 HRESULT IncludeObject( [in] IShellView *shv, [in] LPCITEMIDLIST pidl );
830 /*****************************************************************************
831 * IDockingWindowFrame interface
834 object,
835 uuid(47d2657a-7b27-11d0-8ca9-00a0c92dbfe8),
836 pointer_default(unique)
838 interface IDockingWindowFrame : IOleWindow
840 cpp_quote("#define DWFRF_NORMAL 0x0000")
841 cpp_quote("#define DWFRF_DELETECONFIGDATA 0x0001")
842 cpp_quote("#define DWFAF_HIDDEN 0x0001")
844 HRESULT AddToolbar(
845 [in] IUnknown *punkSrc,
846 [in] LPCWSTR pwszItem,
847 [in] DWORD dwAddFlags);
849 HRESULT RemoveToolbar(
850 [in] IUnknown *punkSrc,
851 [in] DWORD dwRemoveFlags);
853 HRESULT FindToolbar(
854 [in] LPCWSTR pwszItem,
855 [in] REFIID riid,
856 [out] LPVOID *ppvObj);
860 /*****************************************************************************
861 * IDragSourceHelper interface
864 object,
865 uuid(de5bf786-477a-11d2-839d-00c04fd918d0),
866 pointer_default(unique)
868 interface IDragSourceHelper : IUnknown
870 typedef struct
872 SIZE sizeDragImage;
873 POINT ptOffset;
874 HBITMAP hbmpDragImage;
875 COLORREF crColorKey;
876 } SHDRAGIMAGE, *LPSHDRAGIMAGE;
878 HRESULT InitializeFromBitmap(
879 [in] LPSHDRAGIMAGE pshdi,
880 [in] IDataObject *pDataObject);
882 HRESULT InitializeFromWindow(
883 [in] HWND hwnd,
884 [in] POINT *ppt,
885 [in] IDataObject *pDataObject);
889 /*****************************************************************************
890 * IDropTargetHelper interface
893 object,
894 uuid(4657278b-411b-11d2-839a-00c04fd918d0),
895 pointer_default(unique)
897 interface IDropTargetHelper : IUnknown
899 HRESULT DragEnter(
900 [in] HWND hwndTarget,
901 [in] IDataObject *pDataObject,
902 [in] POINT *ppt,
903 [in] DWORD dwEffect);
905 HRESULT DragLeave();
907 HRESULT DragOver(
908 [in] POINT *ppt,
909 [in] DWORD dwEffect);
911 HRESULT Drop(
912 [in] IDataObject *pDataObject,
913 [in] POINT *ppt,
914 [in] DWORD dwEffect);
916 HRESULT Show( [in] BOOL fShow );
920 /*****************************************************************************
921 * IContextMenu interface
924 object,
925 uuid(000214e4-0000-0000-c000-000000000046),
926 pointer_default(unique)
928 interface IContextMenu : IUnknown
930 cpp_quote("#define CMF_NORMAL 0x00000000")
931 cpp_quote("#define CMF_DEFAULTONLY 0x00000001")
932 cpp_quote("#define CMF_VERBSONLY 0x00000002")
933 cpp_quote("#define CMF_EXPLORE 0x00000004")
934 cpp_quote("#define CMF_NOVERBS 0x00000008")
935 cpp_quote("#define CMF_CANRENAME 0x00000010")
936 cpp_quote("#define CMF_NODEFAULT 0x00000020")
937 cpp_quote("#define CMF_INCLUDESTATIC 0x00000040")
938 cpp_quote("#define CMF_EXTENDEDVERBS 0x00000100")
939 cpp_quote("#define CMF_RESERVED 0xffff0000")
941 cpp_quote("#define GCS_VERBA 0x00000000")
942 cpp_quote("#define GCS_HELPTEXTA 0x00000001")
943 cpp_quote("#define GCS_VALIDATEA 0x00000002")
944 cpp_quote("#define GCS_VERBW 0x00000004")
945 cpp_quote("#define GCS_HELPTEXTW 0x00000005")
946 cpp_quote("#define GCS_VALIDATEW 0x00000006")
947 cpp_quote("#define GCS_UNICODE 0x00000004")
948 cpp_quote("#define GCS_VERB WINELIB_NAME_AW(GCS_VERB)")
949 cpp_quote("#define GCS_HELPTEXT WINELIB_NAME_AW(GCS_HELPTEXT)")
950 cpp_quote("#define GCS_VALIDATE WINELIB_NAME_AW(GCS_VALIDATE)")
952 cpp_quote("#define CMDSTR_NEWFOLDERA \"NewFolder\"")
953 cpp_quote("#define CMDSTR_VIEWLISTA \"ViewList\"")
954 cpp_quote("#define CMDSTR_VIEWDETAILSA \"ViewDetails\"")
955 cpp_quote("#if defined(__GNUC__)")
956 cpp_quote("# define CMDSTR_NEWFOLDERW (const WCHAR []){ 'N','e','w','F','o','l','d','e','r',0 }")
957 cpp_quote("# define CMDSTR_VIEWLISTW (const WCHAR []){ 'V','i','e','w','L','i','s','t',0 }")
958 cpp_quote("# define CMDSTR_VIEWDETAILSW (const WCHAR []){ 'V','i','e','w','D','e','t','a','i','l','s',0 }")
959 cpp_quote("#elif defined(_MSC_VER)")
960 cpp_quote("# define CMDSTR_NEWFOLDERW L\"NewFolder\"")
961 cpp_quote("# define CMDSTR_VIEWLISTW L\"ViewList\"")
962 cpp_quote("# define CMDSTR_VIEWDETAILSW L\"ViewDetails\"")
963 cpp_quote("#else")
964 cpp_quote("static const WCHAR CMDSTR_NEWFOLDERW[] = {'N','e','w','F','o','l','d','e','r',0};")
965 cpp_quote("static const WCHAR CMDSTR_VIEWLISTW [] = {'V','i','e','w','L','i','s','t',0};")
966 cpp_quote("static const WCHAR CMDSTR_VIEWDETAILSW[] = {'V','i','e','w','D','e','t','a','i','l','s',0};")
967 cpp_quote("#endif")
968 cpp_quote("#define CMDSTR_NEWFOLDER WINELIB_NAME_AW(CMDSTR_NEWFOLDER)")
969 cpp_quote("#define CMDSTR_VIEWLIST WINELIB_NAME_AW(CMDSTR_VIEWLIST)")
970 cpp_quote("#define CMDSTR_VIEWDETAILS WINELIB_NAME_AW(CMDSTR_VIEWDETAILS)")
972 cpp_quote("#define CMIC_MASK_HOTKEY SEE_MASK_HOTKEY")
973 cpp_quote("#define CMIC_MASK_ICON SEE_MASK_ICON")
974 cpp_quote("#define CMIC_MASK_FLAG_NO_UI SEE_MASK_FLAG_NO_UI")
975 cpp_quote("#define CMIC_MASK_UNICODE SEE_MASK_UNICODE")
976 cpp_quote("#define CMIC_MASK_NO_CONSOLE SEE_MASK_NO_CONSOLE")
977 cpp_quote("#define CMIC_MASK_HASLINKNAME SEE_MASK_HASLINKNAME")
978 cpp_quote("#define CMIC_MASK_FLAG_SEP_VDM SEE_MASK_FLAG_SEPVDM")
979 cpp_quote("#define CMIC_MASK_HASTITLE SEE_MASK_HASTITLE")
980 cpp_quote("#define CMIC_MASK_ASYNCOK SEE_MASK_ASYNCOK")
981 cpp_quote("#define CMIC_MASK_SHIFT_DOWN 0x10000000")
982 cpp_quote("#define CMIC_MASK_PTINVOKE 0x20000000")
983 cpp_quote("#define CMIC_MASK_CONTROL_DOWN 0x40000000")
984 cpp_quote("#define CMIC_MASK_FLAG_LOG_USAGE SEE_MASK_FLAG_LOG_USAGE")
985 cpp_quote("#define CMIC_MASK_NOZONECHECKS SEE_MASK_NOZONECHECKS")
987 typedef IContextMenu *LPCONTEXTMENU;
989 typedef struct tagCMINVOKECOMMANDINFO
991 DWORD cbSize;
992 DWORD fMask;
993 HWND hwnd;
994 LPCSTR lpVerb;
995 LPCSTR lpParameters;
996 LPCSTR lpDirectory;
997 INT nShow;
998 DWORD dwHotKey;
999 HANDLE hIcon;
1000 } CMINVOKECOMMANDINFO, *LPCMINVOKECOMMANDINFO;
1002 typedef struct tagCMInvokeCommandInfoEx
1004 DWORD cbSize;
1005 DWORD fMask;
1006 HWND hwnd;
1007 LPCSTR lpVerb;
1008 LPCSTR lpParameters;
1009 LPCSTR lpDirectory;
1010 INT nShow;
1011 DWORD dwHotKey;
1012 HANDLE hIcon;
1013 LPCSTR lpTitle;
1014 LPCWSTR lpVerbW;
1015 LPCWSTR lpParametersW;
1016 LPCWSTR lpDirectoryW;
1017 LPCWSTR lpTitleW;
1018 POINT ptInvoke;
1019 } CMINVOKECOMMANDINFOEX, *LPCMINVOKECOMMANDINFOEX;
1021 HRESULT QueryContextMenu(
1022 [in] HMENU hmenu,
1023 [in] UINT indexMenu,
1024 [in] UINT idCmdFirst,
1025 [in] UINT idCmdLast,
1026 [in] UINT uFlags);
1028 HRESULT InvokeCommand( [in] LPCMINVOKECOMMANDINFO lpici );
1030 HRESULT GetCommandString(
1031 [in] UINT idCmd,
1032 [in] UINT uType,
1033 [out] UINT *pwReserved,
1034 [out, size_is(cchMax)] LPSTR pszName,
1035 [in] UINT cchMax);
1039 /*****************************************************************************
1040 * IContextMenu2 interface
1043 object,
1044 uuid(000214f4-0000-0000-c000-000000000046),
1045 pointer_default(unique)
1047 interface IContextMenu2 : IContextMenu
1049 typedef IContextMenu2 *LPCONTEXTMENU2;
1051 HRESULT HandleMenuMsg(
1052 [in] UINT uMsg,
1053 [in] WPARAM wParam,
1054 [in] LPARAM lParam);
1058 /*****************************************************************************
1059 * IContextMenu3 interface
1062 object,
1063 uuid(bcfce0a0-ec17-11d0-8d10-00a0c90f2719),
1064 pointer_default(unique)
1066 interface IContextMenu3 : IContextMenu2
1068 typedef IContextMenu3 *LPCONTEXTMENU3;
1070 HRESULT HandleMenuMsg2(
1071 [in] UINT uMsg,
1072 [in] WPARAM wParam,
1073 [in] LPARAM lParam,
1074 [out] LRESULT *plResult);
1078 /*****************************************************************************
1079 * IShellExecuteHookA interface
1082 object,
1083 uuid(000214f5-0000-0000-c000-000000000046),
1084 pointer_default(unique)
1086 interface IShellExecuteHookA : IUnknown
1088 cpp_quote("struct _SHELLEXECUTEINFOA;");
1089 HRESULT Execute(
1090 [in, out] struct _SHELLEXECUTEINFOA* pei);
1094 /*****************************************************************************
1095 * IShellExecuteHookW interface
1098 object,
1099 uuid(000214fb-0000-0000-c000-000000000046),
1100 pointer_default(unique)
1102 interface IShellExecuteHookW : IUnknown
1104 cpp_quote("struct _SHELLEXECUTEINFOW;");
1105 HRESULT Execute(
1106 [in, out] struct _SHELLEXECUTEINFOW* pei);