msdasql: Implement IColumnsRowset GetAvailableColumns.
[wine.git] / dlls / shell32 / shfldr.h
blob163bf0517d39ba9b97468cc2239943e94324bc25
1 /*
2 * Virtual Folder
3 * common definitions
5 * Copyright 1997 Marcus Meissner
6 * Copyright 1998, 1999, 2002 Juergen Schmied
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "stgprop.h"
25 #define CHARS_IN_GUID 39
27 typedef struct {
28 const GUID *fmtid;
29 DWORD pid;
30 int colnameid;
31 int pcsFlags;
32 int fmt;
33 int cxChar;
34 } shvheader;
36 HRESULT SHELL32_GetColumnDetails(const shvheader *data, int column, SHELLDETAILS *details) DECLSPEC_HIDDEN;
37 HRESULT shellfolder_map_column_to_scid(const shvheader *data, UINT column, SHCOLUMNID *scid) DECLSPEC_HIDDEN;
38 HRESULT shellfolder_get_file_details(IShellFolder2 *iface, LPCITEMIDLIST pidl, const shvheader *header,
39 int column, SHELLDETAILS *psd) DECLSPEC_HIDDEN;
41 #define GET_SHGDN_FOR(dwFlags) ((DWORD)dwFlags & (DWORD)0x0000FF00)
42 #define GET_SHGDN_RELATION(dwFlags) ((DWORD)dwFlags & (DWORD)0x000000FF)
44 BOOL SHELL32_GetCustomFolderAttribute (LPCITEMIDLIST pidl, LPCWSTR pwszHeading, LPCWSTR pwszAttribute, LPWSTR pwszValue, DWORD cchValue) DECLSPEC_HIDDEN;
46 LPCWSTR GetNextElementW (LPCWSTR pszNext, LPWSTR pszOut, DWORD dwOut) DECLSPEC_HIDDEN;
47 HRESULT SHELL32_ParseNextElement (IShellFolder2 * psf, HWND hwndOwner, LPBC pbc, LPITEMIDLIST * pidlInOut,
48 LPOLESTR szNext, DWORD * pEaten, DWORD * pdwAttributes) DECLSPEC_HIDDEN;
49 HRESULT SHELL32_GetItemAttributes (IShellFolder2 *folder, LPCITEMIDLIST pidl, DWORD *attributes) DECLSPEC_HIDDEN;
50 HRESULT SHELL32_GetDisplayNameOfChild (IShellFolder2 * psf, LPCITEMIDLIST pidl, DWORD dwFlags, LPWSTR szOut,
51 DWORD dwOutLen) DECLSPEC_HIDDEN;
53 HRESULT SHELL32_BindToChild (LPCITEMIDLIST pidlRoot, const CLSID *clsidChild,
54 LPCWSTR pathRoot, LPCITEMIDLIST pidlComplete, REFIID riid, LPVOID * ppvOut) DECLSPEC_HIDDEN;
56 HRESULT SHELL32_CompareIDs(IShellFolder2 *iface, LPARAM lParam, LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2) DECLSPEC_HIDDEN;
57 LPITEMIDLIST SHELL32_CreatePidlFromBindCtx(IBindCtx *pbc, LPCWSTR path) DECLSPEC_HIDDEN;
59 BOOL is_trash_available(void) DECLSPEC_HIDDEN;
60 BOOL trash_file( const WCHAR *path ) DECLSPEC_HIDDEN;
62 static inline int SHELL32_GUIDToStringA (REFGUID guid, LPSTR str)
64 return sprintf(str, "{%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
65 guid->Data1, guid->Data2, guid->Data3,
66 guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
67 guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
70 static inline int SHELL32_GUIDToStringW (REFGUID guid, LPWSTR str)
72 static const WCHAR fmtW[] =
73 { '{','%','0','8','l','x','-','%','0','4','x','-','%','0','4','x','-',
74 '%','0','2','x','%','0','2','x','-',
75 '%','0','2','x','%','0','2','x','%','0','2','x','%','0','2','x',
76 '%','0','2','x','%','0','2','x','}',0 };
77 return swprintf(str, CHARS_IN_GUID, fmtW,
78 guid->Data1, guid->Data2, guid->Data3,
79 guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
80 guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
83 void SHELL_FS_ProcessDisplayFilename(LPWSTR szPath, DWORD dwFlags) DECLSPEC_HIDDEN;
85 DEFINE_GUID( CLSID_UnixFolder, 0xcc702eb2, 0x7dc5, 0x11d9, 0xc6, 0x87, 0x00, 0x04, 0x23, 0x8a, 0x01, 0xcd );
86 DEFINE_GUID( CLSID_UnixDosFolder, 0x9d20aae8, 0x0625, 0x44b0, 0x9c, 0xa7, 0x71, 0x88, 0x9c, 0x22, 0x54, 0xd9 );