Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 1 | /* |
Francois Gouget | 93416cd | 2005-03-23 13:15:18 +0000 | [diff] [blame] | 2 | * Defines helper functions to manipulate the contents of an IShellFolder |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 3 | * |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 4 | * Copyright 2000 Juergen Schmied |
| 5 | * |
| 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2.1 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #ifndef __WINE_SHELLFOLDER_HELP_H |
| 22 | #define __WINE_SHELLFOLDER_HELP_H |
| 23 | |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 24 | #include <stdarg.h> |
| 25 | |
| 26 | #include "windef.h" |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 27 | #include "winbase.h" |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 28 | #include "winuser.h" |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 29 | |
Ove Kaaven | 1f5315c | 2002-12-05 20:33:07 +0000 | [diff] [blame] | 30 | #include "shlobj.h" |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 31 | |
| 32 | /***************************************************************************** |
| 33 | * Predeclare the interfaces |
| 34 | */ |
| 35 | DEFINE_GUID(IID_ISFHelper, 0x1fe68efbL, 0x1874, 0x9812, 0x56, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 36 | |
| 37 | /***************************************************************************** |
| 38 | * ISFHelper interface |
| 39 | */ |
| 40 | |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 41 | #define INTERFACE ISFHelper |
Alexandre Julliard | 739e5b0 | 2004-10-05 04:16:21 +0000 | [diff] [blame] | 42 | DECLARE_INTERFACE_(ISFHelper,IUnknown) |
| 43 | { |
| 44 | /*** IUnknown methods ***/ |
| 45 | STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE; |
| 46 | STDMETHOD_(ULONG,AddRef)(THIS) PURE; |
| 47 | STDMETHOD_(ULONG,Release)(THIS) PURE; |
| 48 | /*** ISFHelper methods ***/ |
| 49 | STDMETHOD(GetUniqueName)(THIS_ LPSTR lpName, UINT uLen) PURE; |
| 50 | STDMETHOD(AddFolder)(THIS_ HWND hwnd, LPCSTR lpName, LPITEMIDLIST * ppidlOut) PURE; |
| 51 | STDMETHOD(DeleteItems)(THIS_ UINT cidl, LPCITEMIDLIST * apidl) PURE; |
| 52 | STDMETHOD(CopyItems)(THIS_ IShellFolder * pSFFrom, UINT cidl, LPCITEMIDLIST * apidl) PURE; |
| 53 | }; |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 54 | #undef INTERFACE |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 55 | |
Alexandre Julliard | 5537911 | 2003-04-10 21:13:58 +0000 | [diff] [blame] | 56 | #ifdef COBJMACROS |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 57 | /*** IUnknown methods ***/ |
Alexandre Julliard | 5537911 | 2003-04-10 21:13:58 +0000 | [diff] [blame] | 58 | #define ISFHelper_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) |
| 59 | #define ISFHelper_AddRef(p) (p)->lpVtbl->AddRef(p) |
| 60 | #define ISFHelper_Release(p) (p)->lpVtbl->Release(p) |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 61 | /*** ISFHelper methods ***/ |
Alexandre Julliard | 5537911 | 2003-04-10 21:13:58 +0000 | [diff] [blame] | 62 | #define ISFHelper_GetUniqueName(p,a,b) (p)->lpVtbl->GetUniqueName(p,a,b) |
| 63 | #define ISFHelper_AddFolder(p,a,b,c) (p)->lpVtbl->AddFolder(p,a,b,c) |
| 64 | #define ISFHelper_DeleteItems(p,a,b) (p)->lpVtbl->DeleteItems(p,a,b) |
| 65 | #define ISFHelper_CopyItems(p,a,b,c) (p)->lpVtbl->CopyItems(p,a,b,c) |
| 66 | #endif |
Juergen Schmied | 229ea7a | 2000-02-20 18:37:48 +0000 | [diff] [blame] | 67 | |
| 68 | #endif /* __WINE_SHELLFOLDER_HELP_H */ |