2 * SHLWAPI.DLL functions
4 * Copyright (C) 2000 Juergen Schmied
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_SHLWAPI_H
22 #define __WINE_SHLWAPI_H
24 /* FIXME: #include <specstrings.h> */
30 #endif /* defined(__cplusplus) */
34 #ifndef NO_SHLWAPI_REG
36 /* Registry functions */
38 DWORD WINAPI
SHDeleteEmptyKeyA(HKEY
,LPCSTR
);
39 DWORD WINAPI
SHDeleteEmptyKeyW(HKEY
,LPCWSTR
);
40 #define SHDeleteEmptyKey WINELIB_NAME_AW(SHDeleteEmptyKey)
42 DWORD WINAPI
SHDeleteKeyA(HKEY
,LPCSTR
);
43 DWORD WINAPI
SHDeleteKeyW(HKEY
,LPCWSTR
);
44 #define SHDeleteKey WINELIB_NAME_AW(SHDeleteKey)
46 DWORD WINAPI
SHDeleteValueA(HKEY
,LPCSTR
,LPCSTR
);
47 DWORD WINAPI
SHDeleteValueW(HKEY
,LPCWSTR
,LPCWSTR
);
48 #define SHDeleteValue WINELIB_NAME_AW(SHDeleteValue)
50 DWORD WINAPI
SHGetValueA(HKEY
,LPCSTR
,LPCSTR
,LPDWORD
,LPVOID
,LPDWORD
);
51 DWORD WINAPI
SHGetValueW(HKEY
,LPCWSTR
,LPCWSTR
,LPDWORD
,LPVOID
,LPDWORD
);
52 #define SHGetValue WINELIB_NAME_AW(SHGetValue)
54 DWORD WINAPI
SHSetValueA(HKEY
,LPCSTR
,LPCSTR
,DWORD
,LPCVOID
,DWORD
);
55 DWORD WINAPI
SHSetValueW(HKEY
,LPCWSTR
,LPCWSTR
,DWORD
,LPCVOID
,DWORD
);
56 #define SHSetValue WINELIB_NAME_AW(SHSetValue)
58 DWORD WINAPI
SHQueryValueExA(HKEY
,LPCSTR
,LPDWORD
,LPDWORD
,LPVOID
,LPDWORD
);
59 DWORD WINAPI
SHQueryValueExW(HKEY
,LPCWSTR
,LPDWORD
,LPDWORD
,LPVOID
,LPDWORD
);
60 #define SHQueryValueEx WINELIB_NAME_AW(SHQueryValueEx)
62 LONG WINAPI
SHEnumKeyExA(HKEY
,DWORD
,LPSTR
,LPDWORD
);
63 LONG WINAPI
SHEnumKeyExW(HKEY
,DWORD
,LPWSTR
,LPDWORD
);
64 #define SHEnumKeyEx WINELIB_NAME_AW(SHEnumKeyEx)
66 LONG WINAPI
SHEnumValueA(HKEY
,DWORD
,LPSTR
,LPDWORD
,LPDWORD
,LPVOID
,LPDWORD
);
67 LONG WINAPI
SHEnumValueW(HKEY
,DWORD
,LPWSTR
,LPDWORD
,LPDWORD
,LPVOID
,LPDWORD
);
68 #define SHEnumValue WINELIB_NAME_AW(SHEnumValue)
70 LONG WINAPI
SHQueryInfoKeyA(HKEY
,LPDWORD
,LPDWORD
,LPDWORD
,LPDWORD
);
71 LONG WINAPI
SHQueryInfoKeyW(HKEY
,LPDWORD
,LPDWORD
,LPDWORD
,LPDWORD
);
72 #define SHQueryInfoKey WINELIB_NAME_AW(SHQueryInfoKey)
74 DWORD WINAPI
SHRegGetPathA(HKEY
,LPCSTR
,LPCSTR
,LPSTR
,DWORD
);
75 DWORD WINAPI
SHRegGetPathW(HKEY
,LPCWSTR
,LPCWSTR
,LPWSTR
,DWORD
);
76 #define SHRegGetPath WINELIB_NAME_AW(SHRegGetPath)
78 DWORD WINAPI
SHRegSetPathA(HKEY
,LPCSTR
,LPCSTR
,LPCSTR
,DWORD
);
79 DWORD WINAPI
SHRegSetPathW(HKEY
,LPCWSTR
,LPCWSTR
,LPCWSTR
,DWORD
);
80 #define SHRegSetPath WINELIB_NAME_AW(SHRegSetPath)
82 DWORD WINAPI
SHCopyKeyA(HKEY
,LPCSTR
,HKEY
,DWORD
);
83 DWORD WINAPI
SHCopyKeyW(HKEY
,LPCWSTR
,HKEY
,DWORD
);
84 #define SHCopyKey WINELIB_NAME_AW(SHCopyKey)
86 HKEY WINAPI
SHRegDuplicateHKey(HKEY
);
88 /* SHRegGetValue flags */
91 #define SRRF_RT_REG_NONE 0x1
92 #define SRRF_RT_REG_SZ 0x2
93 #define SRRF_RT_REG_EXPAND_SZ 0x4
94 #define SRRF_RT_REG_BINARY 0x8
95 #define SRRF_RT_REG_DWORD 0x10
96 #define SRRF_RT_REG_MULTI_SZ 0x20
97 #define SRRF_RT_REG_QWORD 0x40
99 #define SRRF_RT_DWORD (SRRF_RT_REG_BINARY|SRRF_RT_REG_DWORD)
100 #define SRRF_RT_QWORD (SRRF_RT_REG_BINARY|SRRF_RT_REG_QWORD)
101 #define SRRF_RT_ANY 0xffff
103 #define SRRF_RM_ANY 0
104 #define SRRF_RM_NORMAL 0x10000
105 #define SRRF_RM_SAFE 0x20000
106 #define SRRF_RM_SAFENETWORK 0x40000
108 #define SRRF_NOEXPAND 0x10000000
109 #define SRRF_ZEROONFAILURE 0x20000000
110 #define SRRF_NOVIRT 0x40000000
112 LSTATUS WINAPI
SHRegGetValueA(HKEY
,LPCSTR
,LPCSTR
,SRRF
,LPDWORD
,LPVOID
,LPDWORD
);
113 LSTATUS WINAPI
SHRegGetValueW(HKEY
,LPCWSTR
,LPCWSTR
,SRRF
,LPDWORD
,LPVOID
,LPDWORD
);
114 #define SHRegGetValue WINELIB_NAME_AW(SHRegGetValue)
116 /* Undocumented registry functions */
118 DWORD WINAPI
SHDeleteOrphanKeyA(HKEY
,LPCSTR
);
119 DWORD WINAPI
SHDeleteOrphanKeyW(HKEY
,LPCWSTR
);
120 #define SHDeleteOrphanKey WINELIB_NAME_AW(SHDeleteOrphanKey)
123 /* User registry functions */
127 SHREGDEL_DEFAULT
= 0,
129 SHREGDEL_HKLM
= 0x10,
130 SHREGDEL_BOTH
= SHREGDEL_HKLM
| SHREGDEL_HKCU
135 SHREGENUM_DEFAULT
= 0,
136 SHREGENUM_HKCU
= 0x1,
137 SHREGENUM_HKLM
= 0x10,
138 SHREGENUM_BOTH
= SHREGENUM_HKLM
| SHREGENUM_HKCU
141 #define SHREGSET_HKCU 0x1 /* Apply to HKCU if empty */
142 #define SHREGSET_FORCE_HKCU 0x2 /* Always apply to HKCU */
143 #define SHREGSET_HKLM 0x4 /* Apply to HKLM if empty */
144 #define SHREGSET_FORCE_HKLM 0x8 /* Always apply to HKLM */
145 #define SHREGSET_DEFAULT (SHREGSET_FORCE_HKCU | SHREGSET_HKLM)
147 typedef HANDLE HUSKEY
;
148 typedef HUSKEY
*PHUSKEY
;
150 LONG WINAPI
SHRegCreateUSKeyA(LPCSTR
,REGSAM
,HUSKEY
,PHUSKEY
,DWORD
);
151 LONG WINAPI
SHRegCreateUSKeyW(LPCWSTR
,REGSAM
,HUSKEY
,PHUSKEY
,DWORD
);
152 #define SHRegCreateUSKey WINELIB_NAME_AW(SHRegCreateUSKey)
154 LONG WINAPI
SHRegOpenUSKeyA(LPCSTR
,REGSAM
,HUSKEY
,PHUSKEY
,BOOL
);
155 LONG WINAPI
SHRegOpenUSKeyW(LPCWSTR
,REGSAM
,HUSKEY
,PHUSKEY
,BOOL
);
156 #define SHRegOpenUSKey WINELIB_NAME_AW(SHRegOpenUSKey)
158 LONG WINAPI
SHRegQueryUSValueA(HUSKEY
,LPCSTR
,LPDWORD
,LPVOID
,LPDWORD
,
160 LONG WINAPI
SHRegQueryUSValueW(HUSKEY
,LPCWSTR
,LPDWORD
,LPVOID
,LPDWORD
,
162 #define SHRegQueryUSValue WINELIB_NAME_AW(SHRegQueryUSValue)
164 LONG WINAPI
SHRegWriteUSValueA(HUSKEY
,LPCSTR
,DWORD
,LPVOID
,DWORD
,DWORD
);
165 LONG WINAPI
SHRegWriteUSValueW(HUSKEY
,LPCWSTR
,DWORD
,LPVOID
,DWORD
,DWORD
);
166 #define SHRegWriteUSValue WINELIB_NAME_AW(SHRegWriteUSValue)
168 LONG WINAPI
SHRegDeleteUSValueA(HUSKEY
,LPCSTR
,SHREGDEL_FLAGS
);
169 LONG WINAPI
SHRegDeleteUSValueW(HUSKEY
,LPCWSTR
,SHREGDEL_FLAGS
);
170 #define SHRegDeleteUSValue WINELIB_NAME_AW(SHRegDeleteUSValue)
172 LONG WINAPI
SHRegDeleteEmptyUSKeyA(HUSKEY
,LPCSTR
,SHREGDEL_FLAGS
);
173 LONG WINAPI
SHRegDeleteEmptyUSKeyW(HUSKEY
,LPCWSTR
,SHREGDEL_FLAGS
);
174 #define SHRegDeleteEmptyUSKey WINELIB_NAME_AW(SHRegDeleteEmptyUSKey)
176 LONG WINAPI
SHRegEnumUSKeyA(HUSKEY
,DWORD
,LPSTR
,LPDWORD
,SHREGENUM_FLAGS
);
177 LONG WINAPI
SHRegEnumUSKeyW(HUSKEY
,DWORD
,LPWSTR
,LPDWORD
,SHREGENUM_FLAGS
);
178 #define SHRegEnumUSKey WINELIB_NAME_AW(SHRegEnumUSKey)
180 LONG WINAPI
SHRegEnumUSValueA(HUSKEY
,DWORD
,LPSTR
,LPDWORD
,LPDWORD
,
181 LPVOID
,LPDWORD
,SHREGENUM_FLAGS
);
182 LONG WINAPI
SHRegEnumUSValueW(HUSKEY
,DWORD
,LPWSTR
,LPDWORD
,LPDWORD
,
183 LPVOID
,LPDWORD
,SHREGENUM_FLAGS
);
184 #define SHRegEnumUSValue WINELIB_NAME_AW(SHRegEnumUSValue)
186 LONG WINAPI
SHRegQueryInfoUSKeyA(HUSKEY
,LPDWORD
,LPDWORD
,LPDWORD
,
187 LPDWORD
,SHREGENUM_FLAGS
);
188 LONG WINAPI
SHRegQueryInfoUSKeyW(HUSKEY
,LPDWORD
,LPDWORD
,LPDWORD
,
189 LPDWORD
,SHREGENUM_FLAGS
);
190 #define SHRegQueryInfoUSKey WINELIB_NAME_AW(SHRegQueryInfoUSKey)
192 LONG WINAPI
SHRegCloseUSKey(HUSKEY
);
194 LONG WINAPI
SHRegGetUSValueA(LPCSTR
,LPCSTR
,LPDWORD
,LPVOID
,LPDWORD
,
196 LONG WINAPI
SHRegGetUSValueW(LPCWSTR
,LPCWSTR
,LPDWORD
,LPVOID
,LPDWORD
,
198 #define SHRegGetUSValue WINELIB_NAME_AW(SHRegGetUSValue)
200 LONG WINAPI
SHRegSetUSValueA(LPCSTR
,LPCSTR
,DWORD
,LPVOID
,DWORD
,DWORD
);
201 LONG WINAPI
SHRegSetUSValueW(LPCWSTR
,LPCWSTR
,DWORD
,LPVOID
,DWORD
,DWORD
);
202 #define SHRegSetUSValue WINELIB_NAME_AW(SHRegSetUSValue)
204 BOOL WINAPI
SHRegGetBoolUSValueA(LPCSTR
,LPCSTR
,BOOL
,BOOL
);
205 BOOL WINAPI
SHRegGetBoolUSValueW(LPCWSTR
,LPCWSTR
,BOOL
,BOOL
);
206 #define SHRegGetBoolUSValue WINELIB_NAME_AW(SHRegGetBoolUSValue)
208 int WINAPI
SHRegGetIntW(HKEY
,LPCWSTR
,int);
210 /* IQueryAssociation and helpers */
213 ASSOCF_NONE
= 0x0000,
214 ASSOCF_INIT_NOREMAPCLSID
= 0x0001, /* Don't map clsid->progid */
215 ASSOCF_INIT_BYEXENAME
= 0x0002, /* .exe name given */
216 ASSOCF_OPEN_BYEXENAME
= 0x0002, /* Synonym */
217 ASSOCF_INIT_DEFAULTTOSTAR
= 0x0004, /* Use * as base */
218 ASSOCF_INIT_DEFAULTTOFOLDER
= 0x0008, /* Use folder as base */
219 ASSOCF_NOUSERSETTINGS
= 0x0010, /* No HKCU reads */
220 ASSOCF_NOTRUNCATE
= 0x0020, /* Don't truncate return */
221 ASSOCF_VERIFY
= 0x0040, /* Verify data */
222 ASSOCF_REMAPRUNDLL
= 0x0080, /* Get rundll args */
223 ASSOCF_NOFIXUPS
= 0x0100, /* Don't fixup errors */
224 ASSOCF_IGNOREBASECLASS
= 0x0200, /* Don't read baseclass */
225 ASSOCF_INIT_IGNOREUNKNOWN
= 0x0400, /* Fail for unknown progid */
226 ASSOCF_INIT_FIXED_PROGID
= 0x0800, /* Used passed string as progid, don't try to map it */
227 ASSOCF_IS_PROTOCOL
= 0x1000, /* Treat as protocol, that should be mapped */
228 ASSOCF_INIT_FOR_FILE
= 0x2000, /* progid is for file extension association */
231 typedef DWORD ASSOCF
;
235 ASSOCSTR_COMMAND
= 1, /* Verb command */
236 ASSOCSTR_EXECUTABLE
, /* .exe from command string */
237 ASSOCSTR_FRIENDLYDOCNAME
, /* Friendly doc type name */
238 ASSOCSTR_FRIENDLYAPPNAME
, /* Friendly .exe name */
239 ASSOCSTR_NOOPEN
, /* noopen value */
240 ASSOCSTR_SHELLNEWVALUE
, /* Use shellnew key */
241 ASSOCSTR_DDECOMMAND
, /* DDE command template */
242 ASSOCSTR_DDEIFEXEC
, /* DDE command for process create */
243 ASSOCSTR_DDEAPPLICATION
, /* DDE app name */
244 ASSOCSTR_DDETOPIC
, /* DDE topic */
245 ASSOCSTR_INFOTIP
, /* Infotip */
246 ASSOCSTR_QUICKTIP
, /* Quick infotip */
247 ASSOCSTR_TILEINFO
, /* Properties for tileview */
248 ASSOCSTR_CONTENTTYPE
, /* Mimetype */
249 ASSOCSTR_DEFAULTICON
, /* Icon */
250 ASSOCSTR_SHELLEXTENSION
, /* GUID for shell extension handler */
256 ASSOCKEY_SHELLEXECCLASS
= 1, /* Key for ShellExec */
257 ASSOCKEY_APP
, /* Application */
258 ASSOCKEY_CLASS
, /* Progid or class */
259 ASSOCKEY_BASECLASS
, /* Base class */
265 ASSOCDATA_MSIDESCRIPTOR
= 1, /* Component descriptor */
266 ASSOCDATA_NOACTIVATEHANDLER
, /* Don't activate */
267 ASSOCDATA_QUERYCLASSSTORE
, /* Look in Class Store */
268 ASSOCDATA_HASPERUSERASSOC
, /* Use user association */
269 ASSOCDATA_EDITFLAGS
, /* Edit flags */
270 ASSOCDATA_VALUE
, /* pszExtra is value */
279 typedef struct IQueryAssociations
*LPQUERYASSOCIATIONS
;
281 #define INTERFACE IQueryAssociations
282 DECLARE_INTERFACE_(IQueryAssociations
,IUnknown
)
284 /*** IUnknown methods ***/
285 STDMETHOD_(HRESULT
,QueryInterface
)(THIS_ REFIID riid
, void** ppvObject
) PURE
;
286 STDMETHOD_(ULONG
,AddRef
)(THIS
) PURE
;
287 STDMETHOD_(ULONG
,Release
)(THIS
) PURE
;
288 /*** IQueryAssociations methods ***/
289 STDMETHOD(Init
)(THIS_ ASSOCF flags
, LPCWSTR pszAssoc
, HKEY hkProgid
, HWND hwnd
) PURE
;
290 STDMETHOD(GetString
)(THIS_ ASSOCF flags
, ASSOCSTR str
, LPCWSTR pszExtra
, LPWSTR pszOut
, DWORD
* pcchOut
) PURE
;
291 STDMETHOD(GetKey
)(THIS_ ASSOCF flags
, ASSOCKEY key
, LPCWSTR pszExtra
, HKEY
* phkeyOut
) PURE
;
292 STDMETHOD(GetData
)(THIS_ ASSOCF flags
, ASSOCDATA data
, LPCWSTR pszExtra
, LPVOID pvOut
, DWORD
* pcbOut
) PURE
;
293 STDMETHOD(GetEnum
)(THIS_ ASSOCF flags
, ASSOCENUM assocenum
, LPCWSTR pszExtra
, REFIID riid
, LPVOID
* ppvOut
) PURE
;
297 #if !defined(__cplusplus) || defined(CINTERFACE)
298 #define IQueryAssociations_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
299 #define IQueryAssociations_AddRef(p) (p)->lpVtbl->AddRef(p)
300 #define IQueryAssociations_Release(p) (p)->lpVtbl->Release(p)
301 #define IQueryAssociations_Init(p,a,b,c,d) (p)->lpVtbl->Init(p,a,b,c,d)
302 #define IQueryAssociations_GetString(p,a,b,c,d,e) (p)->lpVtbl->GetString(p,a,b,c,d,e)
303 #define IQueryAssociations_GetKey(p,a,b,c,d) (p)->lpVtbl->GetKey(p,a,b,c,d)
304 #define IQueryAssociations_GetData(p,a,b,c,d,e) (p)->lpVtbl->GetData(p,a,b,c,d,e)
305 #define IQueryAssociations_GetEnum(p,a,b,c,d,e) (p)->lpVtbl->GetEnum(p,a,b,c,d,e)
308 HRESULT WINAPI
AssocCreate(CLSID
,REFIID
,LPVOID
*);
310 HRESULT WINAPI
AssocQueryStringA(ASSOCF
,ASSOCSTR
,LPCSTR
,LPCSTR
,LPSTR
,LPDWORD
);
311 HRESULT WINAPI
AssocQueryStringW(ASSOCF
,ASSOCSTR
,LPCWSTR
,LPCWSTR
,LPWSTR
,LPDWORD
);
312 #define AssocQueryString WINELIB_NAME_AW(AssocQueryString)
314 HRESULT WINAPI
AssocQueryStringByKeyA(ASSOCF
,ASSOCSTR
,HKEY
,LPCSTR
,LPSTR
,LPDWORD
);
315 HRESULT WINAPI
AssocQueryStringByKeyW(ASSOCF
,ASSOCSTR
,HKEY
,LPCWSTR
,LPWSTR
,LPDWORD
);
316 #define AssocQueryStringByKey WINELIB_NAME_AW(AssocQueryStringByKey)
318 HRESULT WINAPI
AssocQueryKeyA(ASSOCF
,ASSOCKEY
,LPCSTR
,LPCSTR
,PHKEY
);
319 HRESULT WINAPI
AssocQueryKeyW(ASSOCF
,ASSOCKEY
,LPCWSTR
,LPCWSTR
,PHKEY
);
320 #define AssocQueryKey WINELIB_NAME_AW(AssocQueryKey)
322 BOOL WINAPI
AssocIsDangerous(LPCWSTR
);
324 #endif /* NO_SHLWAPI_REG */
326 void WINAPI
IUnknown_Set(IUnknown
**ppunk
, IUnknown
*punk
);
327 void WINAPI
IUnknown_AtomicRelease(IUnknown
**punk
);
328 HRESULT WINAPI
IUnknown_GetWindow(IUnknown
*punk
, HWND
*phwnd
);
329 HRESULT WINAPI
IUnknown_SetSite(IUnknown
*punk
, IUnknown
*punkSite
);
330 HRESULT WINAPI
IUnknown_GetSite(IUnknown
*punk
, REFIID riid
, void **ppv
);
331 HRESULT WINAPI
IUnknown_QueryService(IUnknown
*punk
, REFGUID guidService
, REFIID riid
, void **ppvOut
);
334 #ifndef NO_SHLWAPI_PATH
336 /* GetPathCharType return flags */
337 #define GCT_INVALID 0x0
338 #define GCT_LFNCHAR 0x1
339 #define GCT_SHORTCHAR 0x2
341 #define GCT_SEPARATOR 0x8
343 LPSTR WINAPI
PathAddBackslashA(LPSTR
);
344 LPWSTR WINAPI
PathAddBackslashW(LPWSTR
);
345 #define PathAddBackslash WINELIB_NAME_AW(PathAddBackslash)
347 BOOL WINAPI
PathAddExtensionA(LPSTR
,LPCSTR
);
348 BOOL WINAPI
PathAddExtensionW(LPWSTR
,LPCWSTR
);
349 #define PathAddExtension WINELIB_NAME_AW(PathAddExtension)
351 BOOL WINAPI
PathAppendA(LPSTR
,LPCSTR
);
352 BOOL WINAPI
PathAppendW(LPWSTR
,LPCWSTR
);
353 #define PathAppend WINELIB_NAME_AW(PathAppend)
355 LPSTR WINAPI
PathBuildRootA(LPSTR
,int);
356 LPWSTR WINAPI
PathBuildRootW(LPWSTR
,int);
357 #define PathBuildRoot WINELIB_NAME_AW(PathBuiltRoot)
359 BOOL WINAPI
PathCanonicalizeA(LPSTR
,LPCSTR
);
360 BOOL WINAPI
PathCanonicalizeW(LPWSTR
,LPCWSTR
);
361 #define PathCanonicalize WINELIB_NAME_AW(PathCanonicalize)
363 LPSTR WINAPI
PathCombineA(LPSTR
,LPCSTR
,LPCSTR
);
364 LPWSTR WINAPI
PathCombineW(LPWSTR
,LPCWSTR
,LPCWSTR
);
365 #define PathCombine WINELIB_NAME_AW(PathCombine)
367 BOOL WINAPI
PathCompactPathA(HDC
,LPSTR
,UINT
);
368 BOOL WINAPI
PathCompactPathW(HDC
,LPWSTR
,UINT
);
369 #define PathCompactPath WINELIB_NAME_AW(PathCompactPath)
371 BOOL WINAPI
PathCompactPathExA(LPSTR
,LPCSTR
,UINT
,DWORD
);
372 BOOL WINAPI
PathCompactPathExW(LPWSTR
,LPCWSTR
,UINT
,DWORD
);
373 #define PathCompactPathEx WINELIB_NAME_AW(PathCompactPathEx)
375 int WINAPI
PathCommonPrefixA(LPCSTR
,LPCSTR
,LPSTR
);
376 int WINAPI
PathCommonPrefixW(LPCWSTR
,LPCWSTR
,LPWSTR
);
377 #define PathCommonPrefix WINELIB_NAME_AW(PathCommonPrefix)
379 HRESULT WINAPI
PathCreateFromUrlA(LPCSTR
,LPSTR
,LPDWORD
,DWORD
);
380 HRESULT WINAPI
PathCreateFromUrlW(LPCWSTR
,LPWSTR
,LPDWORD
,DWORD
);
381 #define PathCreateFromUrl WINELIB_NAME_AW(PathCreateFromUrl)
383 HRESULT WINAPI
PathCreateFromUrlAlloc(LPCWSTR
,LPWSTR
*,DWORD
);
385 BOOL WINAPI
PathFileExistsA(LPCSTR
);
386 BOOL WINAPI
PathFileExistsW(LPCWSTR
);
387 #define PathFileExists WINELIB_NAME_AW(PathFileExists)
389 BOOL WINAPI
PathFileExistsAndAttributesA(LPCSTR
,DWORD
*);
390 BOOL WINAPI
PathFileExistsAndAttributesW(LPCWSTR
,DWORD
*);
391 #define PathFileExistsAndAttributes WINELIB_NAME_AW(PathFileExistsAndAttributes)
393 LPSTR WINAPI
PathFindExtensionA(LPCSTR
);
394 LPWSTR WINAPI
PathFindExtensionW(LPCWSTR
);
395 #define PathFindExtension WINELIB_NAME_AW(PathFindExtension)
397 LPSTR WINAPI
PathFindFileNameA(LPCSTR
);
398 LPWSTR WINAPI
PathFindFileNameW(LPCWSTR
);
399 #define PathFindFileName WINELIB_NAME_AW(PathFindFileName)
401 LPSTR WINAPI
PathFindNextComponentA(LPCSTR
);
402 LPWSTR WINAPI
PathFindNextComponentW(LPCWSTR
);
403 #define PathFindNextComponent WINELIB_NAME_AW(PathFindNextComponent)
405 BOOL WINAPI
PathFindOnPathA(LPSTR
,LPCSTR
*);
406 BOOL WINAPI
PathFindOnPathW(LPWSTR
,LPCWSTR
*);
407 #define PathFindOnPath WINELIB_NAME_AW(PathFindOnPath)
409 LPSTR WINAPI
PathGetArgsA(LPCSTR
);
410 LPWSTR WINAPI
PathGetArgsW(LPCWSTR
);
411 #define PathGetArgs WINELIB_NAME_AW(PathGetArgs)
413 UINT WINAPI
PathGetCharTypeA(UCHAR
);
414 UINT WINAPI
PathGetCharTypeW(WCHAR
);
415 #define PathGetCharType WINELIB_NAME_AW(PathGetCharType)
417 int WINAPI
PathGetDriveNumberA(LPCSTR
);
418 int WINAPI
PathGetDriveNumberW(LPCWSTR
);
419 #define PathGetDriveNumber WINELIB_NAME_AW(PathGetDriveNumber)
421 BOOL WINAPI
PathIsDirectoryA(LPCSTR
);
422 BOOL WINAPI
PathIsDirectoryW(LPCWSTR
);
423 #define PathIsDirectory WINELIB_NAME_AW(PathIsDirectory)
425 BOOL WINAPI
PathIsDirectoryEmptyA(LPCSTR
);
426 BOOL WINAPI
PathIsDirectoryEmptyW(LPCWSTR
);
427 #define PathIsDirectoryEmpty WINELIB_NAME_AW(PathIsDirectoryEmpty)
429 BOOL WINAPI
PathIsFileSpecA(LPCSTR
);
430 BOOL WINAPI
PathIsFileSpecW(LPCWSTR
);
431 #define PathIsFileSpec WINELIB_NAME_AW(PathIsFileSpec)
433 BOOL WINAPI
PathIsPrefixA(LPCSTR
,LPCSTR
);
434 BOOL WINAPI
PathIsPrefixW(LPCWSTR
,LPCWSTR
);
435 #define PathIsPrefix WINELIB_NAME_AW(PathIsPrefix)
437 BOOL WINAPI
PathIsRelativeA(LPCSTR
);
438 BOOL WINAPI
PathIsRelativeW(LPCWSTR
);
439 #define PathIsRelative WINELIB_NAME_AW(PathIsRelative)
441 BOOL WINAPI
PathIsRootA(LPCSTR
);
442 BOOL WINAPI
PathIsRootW(LPCWSTR
);
443 #define PathIsRoot WINELIB_NAME_AW(PathIsRoot)
445 BOOL WINAPI
PathIsSameRootA(LPCSTR
,LPCSTR
);
446 BOOL WINAPI
PathIsSameRootW(LPCWSTR
,LPCWSTR
);
447 #define PathIsSameRoot WINELIB_NAME_AW(PathIsSameRoot)
449 BOOL WINAPI
PathIsUNCA(LPCSTR
);
450 BOOL WINAPI
PathIsUNCW(LPCWSTR
);
451 #define PathIsUNC WINELIB_NAME_AW(PathIsUNC)
453 BOOL WINAPI
PathIsUNCServerA(LPCSTR
);
454 BOOL WINAPI
PathIsUNCServerW(LPCWSTR
);
455 #define PathIsUNCServer WINELIB_NAME_AW(PathIsUNCServer)
457 BOOL WINAPI
PathIsUNCServerShareA(LPCSTR
);
458 BOOL WINAPI
PathIsUNCServerShareW(LPCWSTR
);
459 #define PathIsUNCServerShare WINELIB_NAME_AW(PathIsUNCServerShare)
461 BOOL WINAPI
PathIsContentTypeA(LPCSTR
,LPCSTR
);
462 BOOL WINAPI
PathIsContentTypeW(LPCWSTR
,LPCWSTR
);
463 #define PathIsContentType WINELIB_NAME_AW(PathIsContentType)
465 BOOL WINAPI
PathIsURLA(LPCSTR
);
466 BOOL WINAPI
PathIsURLW(LPCWSTR
);
467 #define PathIsURL WINELIB_NAME_AW(PathIsURL)
469 BOOL WINAPI
PathMakePrettyA(LPSTR
);
470 BOOL WINAPI
PathMakePrettyW(LPWSTR
);
471 #define PathMakePretty WINELIB_NAME_AW(PathMakePretty)
473 BOOL WINAPI
PathMatchSpecA(LPCSTR
,LPCSTR
);
474 BOOL WINAPI
PathMatchSpecW(LPCWSTR
,LPCWSTR
);
475 #define PathMatchSpec WINELIB_NAME_AW(PathMatchSpec)
477 int WINAPI
PathParseIconLocationA(LPSTR
);
478 int WINAPI
PathParseIconLocationW(LPWSTR
);
479 #define PathParseIconLocation WINELIB_NAME_AW(PathParseIconLocation)
481 VOID WINAPI
PathQuoteSpacesA(LPSTR
);
482 VOID WINAPI
PathQuoteSpacesW(LPWSTR
);
483 #define PathQuoteSpaces WINELIB_NAME_AW(PathQuoteSpaces)
485 BOOL WINAPI
PathRelativePathToA(LPSTR
,LPCSTR
,DWORD
,LPCSTR
,DWORD
);
486 BOOL WINAPI
PathRelativePathToW(LPWSTR
,LPCWSTR
,DWORD
,LPCWSTR
,DWORD
);
487 #define PathRelativePathTo WINELIB_NAME_AW(PathRelativePathTo)
489 VOID WINAPI
PathRemoveArgsA(LPSTR
);
490 VOID WINAPI
PathRemoveArgsW(LPWSTR
);
491 #define PathRemoveArgs WINELIB_NAME_AW(PathRemoveArgs)
493 LPSTR WINAPI
PathRemoveBackslashA(LPSTR
);
494 LPWSTR WINAPI
PathRemoveBackslashW(LPWSTR
);
495 #define PathRemoveBackslash WINELIB_NAME_AW(PathRemoveBackslash)
497 VOID WINAPI
PathRemoveBlanksA(LPSTR
);
498 VOID WINAPI
PathRemoveBlanksW(LPWSTR
);
499 #define PathRemoveBlanks WINELIB_NAME_AW(PathRemoveBlanks)
501 VOID WINAPI
PathRemoveExtensionA(LPSTR
);
502 VOID WINAPI
PathRemoveExtensionW(LPWSTR
);
503 #define PathRemoveExtension WINELIB_NAME_AW(PathRemoveExtension)
505 BOOL WINAPI
PathRemoveFileSpecA(LPSTR
);
506 BOOL WINAPI
PathRemoveFileSpecW(LPWSTR
);
507 #define PathRemoveFileSpec WINELIB_NAME_AW(PathRemoveFileSpec)
509 BOOL WINAPI
PathRenameExtensionA(LPSTR
,LPCSTR
);
510 BOOL WINAPI
PathRenameExtensionW(LPWSTR
,LPCWSTR
);
511 #define PathRenameExtension WINELIB_NAME_AW(PathRenameExtension)
513 BOOL WINAPI
PathSearchAndQualifyA(LPCSTR
,LPSTR
,UINT
);
514 BOOL WINAPI
PathSearchAndQualifyW(LPCWSTR
,LPWSTR
,UINT
);
515 #define PathSearchAndQualify WINELIB_NAME_AW(PathSearchAndQualify)
517 VOID WINAPI
PathSetDlgItemPathA(HWND
,int,LPCSTR
);
518 VOID WINAPI
PathSetDlgItemPathW(HWND
,int,LPCWSTR
);
519 #define PathSetDlgItemPath WINELIB_NAME_AW(PathSetDlgItemPath)
521 LPSTR WINAPI
PathSkipRootA(LPCSTR
);
522 LPWSTR WINAPI
PathSkipRootW(LPCWSTR
);
523 #define PathSkipRoot WINELIB_NAME_AW(PathSkipRoot)
525 VOID WINAPI
PathStripPathA(LPSTR
);
526 VOID WINAPI
PathStripPathW(LPWSTR
);
527 #define PathStripPath WINELIB_NAME_AW(PathStripPath)
529 BOOL WINAPI
PathStripToRootA(LPSTR
);
530 BOOL WINAPI
PathStripToRootW(LPWSTR
);
531 #define PathStripToRoot WINELIB_NAME_AW(PathStripToRoot)
533 VOID WINAPI
PathUnquoteSpacesA(LPSTR
);
534 VOID WINAPI
PathUnquoteSpacesW(LPWSTR
);
535 #define PathUnquoteSpaces WINELIB_NAME_AW(PathUnquoteSpaces)
537 BOOL WINAPI
PathMakeSystemFolderA(LPCSTR
);
538 BOOL WINAPI
PathMakeSystemFolderW(LPCWSTR
);
539 #define PathMakeSystemFolder WINELIB_NAME_AW(PathMakeSystemFolder)
541 BOOL WINAPI
PathUnmakeSystemFolderA(LPCSTR
);
542 BOOL WINAPI
PathUnmakeSystemFolderW(LPCWSTR
);
543 #define PathUnmakeSystemFolder WINELIB_NAME_AW(PathUnmakeSystemFolder)
545 BOOL WINAPI
PathIsSystemFolderA(LPCSTR
,DWORD
);
546 BOOL WINAPI
PathIsSystemFolderW(LPCWSTR
,DWORD
);
547 #define PathIsSystemFolder WINELIB_NAME_AW(PathIsSystemFolder)
549 BOOL WINAPI
PathIsNetworkPathA(LPCSTR
);
550 BOOL WINAPI
PathIsNetworkPathW(LPCWSTR
);
551 #define PathIsNetworkPath WINELIB_NAME_AW(PathIsNetworkPath)
553 BOOL WINAPI
PathIsLFNFileSpecA(LPCSTR
);
554 BOOL WINAPI
PathIsLFNFileSpecW(LPCWSTR
);
555 #define PathIsLFNFileSpec WINELIB_NAME_AW(PathIsLFNFileSpec)
557 LPCSTR WINAPI
PathFindSuffixArrayA(LPCSTR
,LPCSTR
*,int);
558 LPCWSTR WINAPI
PathFindSuffixArrayW(LPCWSTR
,LPCWSTR
*,int);
559 #define PathFindSuffixArray WINELIB_NAME_AW(PathFindSuffixArray)
561 VOID WINAPI
PathUndecorateA(LPSTR
);
562 VOID WINAPI
PathUndecorateW(LPWSTR
);
563 #define PathUndecorate WINELIB_NAME_AW(PathUndecorate)
565 BOOL WINAPI
PathUnExpandEnvStringsA(LPCSTR
,LPSTR
,UINT
);
566 BOOL WINAPI
PathUnExpandEnvStringsW(LPCWSTR
,LPWSTR
,UINT
);
567 #define PathUnExpandEnvStrings WINELIB_NAME_AW(PathUnExpandEnvStrings)
571 URL_SCHEME_INVALID
= -1,
572 URL_SCHEME_UNKNOWN
= 0,
587 URL_SCHEME_JAVASCRIPT
,
591 URL_SCHEME_MSSHELLROOTED
,
592 URL_SCHEME_MSSHELLIDLIST
,
594 URL_SCHEME_MSSHELLDEVICE
,
596 URL_SCHEME_SEARCH_MS
,
598 URL_SCHEME_KNOWNFOLDER
,
602 /* These are used by UrlGetPart routine */
613 #define URL_PARTFLAG_KEEPSCHEME 0x00000001
615 /* These are used by the UrlIs... routines */
626 /* This is used by the UrlApplyScheme... routines */
627 #define URL_APPLY_FORCEAPPLY 0x00000008
628 #define URL_APPLY_GUESSFILE 0x00000004
629 #define URL_APPLY_GUESSSCHEME 0x00000002
630 #define URL_APPLY_DEFAULT 0x00000001
632 /* The following are used by UrlEscape..., UrlUnEscape...,
633 * UrlCanonicalize..., and UrlCombine... routines
635 #define URL_WININET_COMPATIBILITY 0x80000000
636 #define URL_PLUGGABLE_PROTOCOL 0x40000000
637 #define URL_ESCAPE_UNSAFE 0x20000000
638 #define URL_UNESCAPE 0x10000000
640 #define URL_DONT_SIMPLIFY 0x08000000
641 #define URL_NO_META URL_DONT_SIMPLIFY
642 #define URL_ESCAPE_SPACES_ONLY 0x04000000
643 #define URL_DONT_ESCAPE_EXTRA_INFO 0x02000000
644 #define URL_DONT_UNESCAPE_EXTRA_INFO URL_DONT_ESCAPE_EXTRA_INFO
645 #define URL_BROWSER_MODE URL_DONT_ESCAPE_EXTRA_INFO
647 #define URL_INTERNAL_PATH 0x00800000 /* Will escape #'s in paths */
648 #define URL_UNESCAPE_HIGH_ANSI_ONLY 0x00400000
649 #define URL_CONVERT_IF_DOSPATH 0x00200000
650 #define URL_UNESCAPE_INPLACE 0x00100000
652 #define URL_FILE_USE_PATHURL 0x00010000
653 #define URL_ESCAPE_AS_UTF8 0x00040000
655 #define URL_ESCAPE_SEGMENT_ONLY 0x00002000
656 #define URL_ESCAPE_PERCENT 0x00001000
658 HRESULT WINAPI
UrlApplySchemeA(LPCSTR
,LPSTR
,LPDWORD
,DWORD
);
659 HRESULT WINAPI
UrlApplySchemeW(LPCWSTR
,LPWSTR
,LPDWORD
,DWORD
);
660 #define UrlApplyScheme WINELIB_NAME_AW(UrlApplyScheme)
662 HRESULT WINAPI
UrlCanonicalizeA(LPCSTR
,LPSTR
,LPDWORD
,DWORD
);
663 HRESULT WINAPI
UrlCanonicalizeW(LPCWSTR
,LPWSTR
,LPDWORD
,DWORD
);
664 #define UrlCanonicalize WINELIB_NAME_AW(UrlCanonicalize)
666 HRESULT WINAPI
UrlCombineA(LPCSTR
,LPCSTR
,LPSTR
,LPDWORD
,DWORD
);
667 HRESULT WINAPI
UrlCombineW(LPCWSTR
,LPCWSTR
,LPWSTR
,LPDWORD
,DWORD
);
668 #define UrlCombine WINELIB_NAME_AW(UrlCombine)
670 INT WINAPI
UrlCompareA(LPCSTR
,LPCSTR
,BOOL
);
671 INT WINAPI
UrlCompareW(LPCWSTR
,LPCWSTR
,BOOL
);
672 #define UrlCompare WINELIB_NAME_AW(UrlCompare)
674 HRESULT WINAPI
UrlEscapeA(LPCSTR
,LPSTR
,LPDWORD
,DWORD
);
675 HRESULT WINAPI
UrlEscapeW(LPCWSTR
,LPWSTR
,LPDWORD
,DWORD
);
676 #define UrlEscape WINELIB_NAME_AW(UrlEscape)
678 #define UrlEscapeSpacesA(x,y,z) UrlCanonicalizeA(x, y, z, \
679 URL_DONT_ESCAPE_EXTRA_INFO|URL_ESCAPE_SPACES_ONLY)
680 #define UrlEscapeSpacesW(x,y,z) UrlCanonicalizeW(x, y, z, \
681 URL_DONT_ESCAPE_EXTRA_INFO|URL_ESCAPE_SPACES_ONLY)
682 #define UrlEscapeSpaces WINELIB_NAME_AW(UrlEscapeSpaces)
684 LPCSTR WINAPI
UrlGetLocationA(LPCSTR
);
685 LPCWSTR WINAPI
UrlGetLocationW(LPCWSTR
);
686 #define UrlGetLocation WINELIB_NAME_AW(UrlGetLocation)
688 HRESULT WINAPI
UrlGetPartA(LPCSTR
,LPSTR
,LPDWORD
,DWORD
,DWORD
);
689 HRESULT WINAPI
UrlGetPartW(LPCWSTR
,LPWSTR
,LPDWORD
,DWORD
,DWORD
);
690 #define UrlGetPart WINELIB_NAME_AW(UrlGetPart)
692 HRESULT WINAPI
HashData(const unsigned char *,DWORD
,unsigned char *lpDest
,DWORD
);
694 HRESULT WINAPI
UrlHashA(LPCSTR
,unsigned char *,DWORD
);
695 HRESULT WINAPI
UrlHashW(LPCWSTR
,unsigned char *,DWORD
);
696 #define UrlHash WINELIB_NAME_AW(UrlHash)
698 BOOL WINAPI
UrlIsA(LPCSTR
,URLIS
);
699 BOOL WINAPI
UrlIsW(LPCWSTR
,URLIS
);
700 #define UrlIs WINELIB_NAME_AW(UrlIs)
702 BOOL WINAPI
UrlIsNoHistoryA(LPCSTR
);
703 BOOL WINAPI
UrlIsNoHistoryW(LPCWSTR
);
704 #define UrlIsNoHistory WINELIB_NAME_AW(UrlIsNoHistory)
706 BOOL WINAPI
UrlIsOpaqueA(LPCSTR
);
707 BOOL WINAPI
UrlIsOpaqueW(LPCWSTR
);
708 #define UrlIsOpaque WINELIB_NAME_AW(UrlIsOpaque)
710 #define UrlIsFileUrlA(x) UrlIsA(x, URLIS_FILEURL)
711 #define UrlIsFileUrlW(x) UrlIsW(x, URLIS_FILEURL)
712 #define UrlIsFileUrl WINELIB_NAME_AW(UrlIsFileUrl)
714 HRESULT WINAPI
UrlUnescapeA(LPSTR
,LPSTR
,LPDWORD
,DWORD
);
715 HRESULT WINAPI
UrlUnescapeW(LPWSTR
,LPWSTR
,LPDWORD
,DWORD
);
716 #define UrlUnescape WINELIB_NAME_AW(UrlUnescape)
718 #define UrlUnescapeInPlaceA(x,y) UrlUnescapeA(x, NULL, NULL, \
719 y | URL_UNESCAPE_INPLACE)
720 #define UrlUnescapeInPlaceW(x,y) UrlUnescapeW(x, NULL, NULL, \
721 y | URL_UNESCAPE_INPLACE)
722 #define UrlUnescapeInPlace WINELIB_NAME_AW(UrlUnescapeInPlace)
724 HRESULT WINAPI
UrlCreateFromPathA(LPCSTR
,LPSTR
,LPDWORD
,DWORD
);
725 HRESULT WINAPI
UrlCreateFromPathW(LPCWSTR
,LPWSTR
,LPDWORD
,DWORD
);
726 #define UrlCreateFromPath WINELIB_NAME_AW(UrlCreateFromPath)
728 typedef struct tagPARSEDURLA
{
735 } PARSEDURLA
, *PPARSEDURLA
;
737 typedef struct tagPARSEDURLW
{
744 } PARSEDURLW
, *PPARSEDURLW
;
746 HRESULT WINAPI
ParseURLA(LPCSTR pszUrl
, PARSEDURLA
*ppu
);
747 HRESULT WINAPI
ParseURLW(LPCWSTR pszUrl
, PARSEDURLW
*ppu
);
748 #define ParseURL WINELIB_NAME_AW(ParseUrl)
750 #endif /* NO_SHLWAPI_PATH */
753 /* String functions */
754 #ifndef NO_SHLWAPI_STRFCNS
756 /* StrToIntEx flags */
757 #define STIF_DEFAULT __MSABI_LONG(0x0)
758 #define STIF_SUPPORT_HEX __MSABI_LONG(0x1)
760 BOOL WINAPI
ChrCmpIA (WORD
,WORD
);
761 BOOL WINAPI
ChrCmpIW (WCHAR
,WCHAR
);
762 #define ChrCmpI WINELIB_NAME_AW(ChrCmpI)
764 INT WINAPI
StrCSpnA(LPCSTR
,LPCSTR
);
765 INT WINAPI
StrCSpnW(LPCWSTR
,LPCWSTR
);
766 #define StrCSpn WINELIB_NAME_AW(StrCSpn)
768 INT WINAPI
StrCSpnIA(LPCSTR
,LPCSTR
);
769 INT WINAPI
StrCSpnIW(LPCWSTR
,LPCWSTR
);
770 #define StrCSpnI WINELIB_NAME_AW(StrCSpnI)
772 #define StrCatA lstrcatA
773 LPWSTR WINAPI
StrCatW(LPWSTR
,LPCWSTR
);
774 #define StrCat WINELIB_NAME_AW(StrCat)
776 LPSTR WINAPI
StrCatBuffA(LPSTR
,LPCSTR
,INT
);
777 LPWSTR WINAPI
StrCatBuffW(LPWSTR
,LPCWSTR
,INT
);
778 #define StrCatBuff WINELIB_NAME_AW(StrCatBuff)
780 DWORD WINAPI
StrCatChainW(LPWSTR
,DWORD
,DWORD
,LPCWSTR
);
782 LPSTR WINAPI
StrChrA(LPCSTR
,WORD
);
783 LPWSTR WINAPI
StrChrW(LPCWSTR
,WCHAR
);
784 #define StrChr WINELIB_NAME_AW(StrChr)
786 LPSTR WINAPI
StrChrIA(LPCSTR
,WORD
);
787 LPWSTR WINAPI
StrChrIW(LPCWSTR
,WCHAR
);
788 #define StrChrI WINELIB_NAME_AW(StrChrI)
790 #define StrCmpA lstrcmpA
791 int WINAPI
StrCmpW(LPCWSTR
,LPCWSTR
);
792 #define StrCmp WINELIB_NAME_AW(StrCmp)
794 #define StrCmpIA lstrcmpiA
795 int WINAPI
StrCmpIW(LPCWSTR
,LPCWSTR
);
796 #define StrCmpI WINELIB_NAME_AW(StrCmpI)
798 #define StrCpyA lstrcpyA
799 LPWSTR WINAPI
StrCpyW(LPWSTR
,LPCWSTR
);
800 #define StrCpy WINELIB_NAME_AW(StrCpy)
802 #define StrCpyNA lstrcpynA
803 LPWSTR WINAPI
StrCpyNW(LPWSTR
,LPCWSTR
,int);
804 #define StrCpyN WINELIB_NAME_AW(StrCpyN)
805 #define StrNCpy WINELIB_NAME_AW(StrCpyN)
807 INT WINAPI
StrCmpLogicalW(LPCWSTR
,LPCWSTR
);
809 INT WINAPI
StrCmpNA(LPCSTR
,LPCSTR
,INT
);
810 INT WINAPI
StrCmpNW(LPCWSTR
,LPCWSTR
,INT
);
811 #define StrCmpN WINELIB_NAME_AW(StrCmpN)
812 #define StrNCmp WINELIB_NAME_AW(StrCmpN)
814 INT WINAPI
StrCmpNIA(LPCSTR
,LPCSTR
,INT
);
815 INT WINAPI
StrCmpNIW(LPCWSTR
,LPCWSTR
,INT
);
816 #define StrCmpNI WINELIB_NAME_AW(StrCmpNI)
817 #define StrNCmpI WINELIB_NAME_AW(StrCmpNI)
819 LPSTR WINAPI
StrDupA(LPCSTR
);
820 LPWSTR WINAPI
StrDupW(LPCWSTR
);
821 #define StrDup WINELIB_NAME_AW(StrDup)
823 HRESULT WINAPI
SHStrDupA(LPCSTR
,WCHAR
**);
824 HRESULT WINAPI
SHStrDupW(LPCWSTR
,WCHAR
**);
825 #define SHStrDup WINELIB_NAME_AW(SHStrDup)
827 LPSTR WINAPI
StrFormatByteSizeA (DWORD
,LPSTR
,UINT
);
829 /* A/W Pairing is broken for this function */
830 LPSTR WINAPI
StrFormatByteSize64A (LONGLONG
,LPSTR
,UINT
);
831 LPWSTR WINAPI
StrFormatByteSizeW (LONGLONG
,LPWSTR
,UINT
);
832 #ifndef WINE_NO_UNICODE_MACROS
834 #define StrFormatByteSize StrFormatByteSizeW
836 #define StrFormatByteSize StrFormatByteSize64A
840 LPSTR WINAPI
StrFormatKBSizeA(LONGLONG
,LPSTR
,UINT
);
841 LPWSTR WINAPI
StrFormatKBSizeW(LONGLONG
,LPWSTR
,UINT
);
842 #define StrFormatKBSize WINELIB_NAME_AW(StrFormatKBSize)
844 int WINAPI
StrFromTimeIntervalA(LPSTR
,UINT
,DWORD
,int);
845 int WINAPI
StrFromTimeIntervalW(LPWSTR
,UINT
,DWORD
,int);
846 #define StrFromTimeInterval WINELIB_NAME_AW(StrFromTimeInterval)
848 BOOL WINAPI
StrIsIntlEqualA(BOOL
,LPCSTR
,LPCSTR
,int);
849 BOOL WINAPI
StrIsIntlEqualW(BOOL
,LPCWSTR
,LPCWSTR
,int);
850 #define StrIsIntlEqual WINELIB_NAME_AW(StrIsIntlEqual)
852 #define StrIntlEqNA(a,b,c) StrIsIntlEqualA(TRUE,a,b,c)
853 #define StrIntlEqNW(a,b,c) StrIsIntlEqualW(TRUE,a,b,c)
855 #define StrIntlEqNIA(a,b,c) StrIsIntlEqualA(FALSE,a,b,c)
856 #define StrIntlEqNIW(a,b,c) StrIsIntlEqualW(FALSE,a,b,c)
858 LPSTR WINAPI
StrNCatA(LPSTR
,LPCSTR
,int);
859 LPWSTR WINAPI
StrNCatW(LPWSTR
,LPCWSTR
,int);
860 #define StrNCat WINELIB_NAME_AW(StrNCat)
861 #define StrCatN WINELIB_NAME_AW(StrNCat)
863 LPSTR WINAPI
StrPBrkA(LPCSTR
,LPCSTR
);
864 LPWSTR WINAPI
StrPBrkW(LPCWSTR
,LPCWSTR
);
865 #define StrPBrk WINELIB_NAME_AW(StrPBrk)
867 LPSTR WINAPI
StrRChrA(LPCSTR
,LPCSTR
,WORD
);
868 LPWSTR WINAPI
StrRChrW(LPCWSTR
,LPCWSTR
,WORD
);
869 #define StrRChr WINELIB_NAME_AW(StrRChr)
871 LPSTR WINAPI
StrRChrIA(LPCSTR
,LPCSTR
,WORD
);
872 LPWSTR WINAPI
StrRChrIW(LPCWSTR
,LPCWSTR
,WORD
);
873 #define StrRChrI WINELIB_NAME_AW(StrRChrI)
875 LPSTR WINAPI
StrRStrIA(LPCSTR
,LPCSTR
,LPCSTR
);
876 LPWSTR WINAPI
StrRStrIW(LPCWSTR
,LPCWSTR
,LPCWSTR
);
877 #define StrRStrI WINELIB_NAME_AW(StrRStrI)
879 int WINAPI
StrSpnA(LPCSTR
,LPCSTR
);
880 int WINAPI
StrSpnW(LPCWSTR
,LPCWSTR
);
881 #define StrSpn WINELIB_NAME_AW(StrSpn)
883 LPSTR WINAPI
StrStrA(LPCSTR
,LPCSTR
);
884 LPWSTR WINAPI
StrStrW(LPCWSTR
,LPCWSTR
);
885 #define StrStr WINELIB_NAME_AW(StrStr)
887 LPSTR WINAPI
StrStrIA(LPCSTR
,LPCSTR
);
888 LPWSTR WINAPI
StrStrIW(LPCWSTR
,LPCWSTR
);
889 #define StrStrI WINELIB_NAME_AW(StrStrI)
891 LPWSTR WINAPI
StrStrNW(LPCWSTR
,LPCWSTR
,UINT
);
892 LPWSTR WINAPI
StrStrNIW(LPCWSTR
,LPCWSTR
,UINT
);
894 int WINAPI
StrToIntA(LPCSTR
);
895 int WINAPI
StrToIntW(LPCWSTR
);
896 #define StrToInt WINELIB_NAME_AW(StrToInt)
897 #define StrToLong WINELIB_NAME_AW(StrToInt)
899 BOOL WINAPI
StrToIntExA(LPCSTR
,DWORD
,int*);
900 BOOL WINAPI
StrToIntExW(LPCWSTR
,DWORD
,int*);
901 #define StrToIntEx WINELIB_NAME_AW(StrToIntEx)
903 BOOL WINAPI
StrToInt64ExA(LPCSTR
,DWORD
,LONGLONG
*);
904 BOOL WINAPI
StrToInt64ExW(LPCWSTR
,DWORD
,LONGLONG
*);
905 #define StrToIntEx64 WINELIB_NAME_AW(StrToIntEx64)
907 BOOL WINAPI
StrTrimA(LPSTR
,LPCSTR
);
908 BOOL WINAPI
StrTrimW(LPWSTR
,LPCWSTR
);
909 #define StrTrim WINELIB_NAME_AW(StrTrim)
911 INT WINAPI
wvnsprintfA(LPSTR
,INT
,LPCSTR
,__ms_va_list
);
912 INT WINAPI
wvnsprintfW(LPWSTR
,INT
,LPCWSTR
,__ms_va_list
);
913 #define wvnsprintf WINELIB_NAME_AW(wvnsprintf)
915 INT WINAPIV
wnsprintfA(LPSTR
,INT
,LPCSTR
, ...);
916 INT WINAPIV
wnsprintfW(LPWSTR
,INT
,LPCWSTR
, ...);
917 #define wnsprintf WINELIB_NAME_AW(wnsprintf)
919 HRESULT WINAPI
SHLoadIndirectString(LPCWSTR
,LPWSTR
,UINT
,PVOID
*);
921 BOOL WINAPI
IntlStrEqWorkerA(BOOL
,LPCSTR
,LPCSTR
,int);
922 BOOL WINAPI
IntlStrEqWorkerW(BOOL
,LPCWSTR
,LPCWSTR
,int);
923 #define IntlStrEqWorker WINELIB_NAME_AW(IntlStrEqWorker)
925 #define IntlStrEqNA(s1,s2,n) IntlStrEqWorkerA(TRUE,s1,s2,n)
926 #define IntlStrEqNW(s1,s2,n) IntlStrEqWorkerW(TRUE,s1,s2,n)
927 #define IntlStrEqN WINELIB_NAME_AW(IntlStrEqN)
929 #define IntlStrEqNIA(s1,s2,n) IntlStrEqWorkerA(FALSE,s1,s2,n)
930 #define IntlStrEqNIW(s1,s2,n) IntlStrEqWorkerW(FALSE,s1,s2,n)
931 #define IntlStrEqNI WINELIB_NAME_AW(IntlStrEqNI)
933 HRESULT WINAPI
StrRetToStrA(STRRET
*,LPCITEMIDLIST
,LPSTR
*);
934 HRESULT WINAPI
StrRetToStrW(STRRET
*,LPCITEMIDLIST
,LPWSTR
*);
935 #define StrRetToStr WINELIB_NAME_AW(StrRetToStr)
937 HRESULT WINAPI
StrRetToBufA(STRRET
*,LPCITEMIDLIST
,LPSTR
,UINT
);
938 HRESULT WINAPI
StrRetToBufW(STRRET
*,LPCITEMIDLIST
,LPWSTR
,UINT
);
939 #define StrRetToBuf WINELIB_NAME_AW(StrRetToBuf)
941 HRESULT WINAPI
StrRetToBSTR(STRRET
*,LPCITEMIDLIST
,BSTR
*);
943 BOOL WINAPI
IsCharSpaceA(CHAR
);
944 BOOL WINAPI
IsCharSpaceW(WCHAR
);
945 #define IsCharSpace WINELIB_NAME_AW(IsCharSpace)
947 #endif /* NO_SHLWAPI_STRFCNS */
951 #ifndef NO_SHLWAPI_GDI
953 HPALETTE WINAPI
SHCreateShellPalette(HDC
);
955 COLORREF WINAPI
ColorHLSToRGB(WORD
,WORD
,WORD
);
957 COLORREF WINAPI
ColorAdjustLuma(COLORREF
,int,BOOL
);
959 VOID WINAPI
ColorRGBToHLS(COLORREF
,LPWORD
,LPWORD
,LPWORD
);
961 #endif /* NO_SHLWAPI_GDI */
963 /* Security functions */
964 BOOL WINAPI
IsInternetESCEnabled(void);
966 /* Stream functions */
967 #ifndef NO_SHLWAPI_STREAM
969 struct IStream
* WINAPI
SHOpenRegStreamA(HKEY
,LPCSTR
,LPCSTR
,DWORD
);
970 struct IStream
* WINAPI
SHOpenRegStreamW(HKEY
,LPCWSTR
,LPCWSTR
,DWORD
);
971 #define SHOpenRegStream WINELIB_NAME_AW(SHOpenRegStream2) /* Uses version 2 */
973 struct IStream
* WINAPI
SHOpenRegStream2A(HKEY
,LPCSTR
,LPCSTR
,DWORD
);
974 struct IStream
* WINAPI
SHOpenRegStream2W(HKEY
,LPCWSTR
,LPCWSTR
,DWORD
);
975 #define SHOpenRegStream2 WINELIB_NAME_AW(SHOpenRegStream2)
977 HRESULT WINAPI
SHCreateStreamOnFileA(LPCSTR
,DWORD
,struct IStream
**);
978 HRESULT WINAPI
SHCreateStreamOnFileW(LPCWSTR
,DWORD
,struct IStream
**);
979 #define SHCreateStreamOnFile WINELIB_NAME_AW(SHCreateStreamOnFile)
981 struct IStream
* WINAPI
SHCreateMemStream(const BYTE
*,UINT
);
982 HRESULT WINAPI
SHCreateStreamOnFileEx(LPCWSTR
,DWORD
,DWORD
,BOOL
,struct IStream
*,struct IStream
**);
983 HRESULT WINAPI
SHCreateStreamWrapper(LPBYTE
,DWORD
,DWORD
,struct IStream
**);
985 #endif /* NO_SHLWAPI_STREAM */
987 HRESULT WINAPI
IStream_Reset(IStream
*);
988 HRESULT WINAPI
IStream_Size(IStream
*,ULARGE_INTEGER
*);
990 /* SHAutoComplete flags */
991 #define SHACF_DEFAULT 0x00000000
992 #define SHACF_FILESYSTEM 0x00000001
993 #define SHACF_URLHISTORY 0x00000002
994 #define SHACF_URLMRU 0x00000004
995 #define SHACF_URLALL (SHACF_URLHISTORY|SHACF_URLMRU)
996 #define SHACF_USETAB 0x00000008
997 #define SHACF_FILESYS_ONLY 0x00000010
998 #define SHACF_FILESYS_DIRS 0x00000020
999 #define SHACF_AUTOSUGGEST_FORCE_ON 0x10000000
1000 #define SHACF_AUTOSUGGEST_FORCE_OFF 0x20000000
1001 #define SHACF_AUTOAPPEND_FORCE_ON 0x40000000
1002 #define SHACF_AUTOAPPEND_FORCE_OFF 0x80000000
1004 HRESULT WINAPI
SHAutoComplete(HWND
,DWORD
);
1007 HRESULT WINAPI
SHCreateThreadRef(LONG
*, IUnknown
**);
1008 HRESULT WINAPI
SHGetThreadRef(IUnknown
**);
1009 HRESULT WINAPI
SHSetThreadRef(IUnknown
*);
1010 HRESULT WINAPI
SHReleaseThreadRef(void);
1012 /* SHCreateThread flags */
1013 #define CTF_INSIST 0x01 /* Always call */
1014 #define CTF_THREAD_REF 0x02 /* Hold thread ref */
1015 #define CTF_PROCESS_REF 0x04 /* Hold process ref */
1016 #define CTF_COINIT 0x08 /* Startup COM first */
1017 #define CTF_FREELIBANDEXIT 0x10 /* Hold DLL ref */
1018 #define CTF_REF_COUNTED 0x20 /* Thread is ref counted */
1019 #define CTF_WAIT_ALLOWCOM 0x40 /* Allow marshalling */
1021 BOOL WINAPI
SHCreateThread(LPTHREAD_START_ROUTINE
,void*,DWORD
,LPTHREAD_START_ROUTINE
);
1023 BOOL WINAPI
SHSkipJunction(struct IBindCtx
*,const CLSID
*);
1025 /* Version Information */
1027 typedef struct _DllVersionInfo
{
1029 DWORD dwMajorVersion
;
1030 DWORD dwMinorVersion
;
1031 DWORD dwBuildNumber
;
1035 #define DLLVER_PLATFORM_WINDOWS 0x01 /* Win9x */
1036 #define DLLVER_PLATFORM_NT 0x02 /* WinNT */
1038 typedef HRESULT (CALLBACK
*DLLGETVERSIONPROC
)(DLLVERSIONINFO
*);
1041 /* shouldn't be here, but is nice for type checking */
1042 HRESULT WINAPI
DllGetVersion(DLLVERSIONINFO
*) DECLSPEC_HIDDEN
;
1045 typedef struct _DLLVERSIONINFO2
{
1046 DLLVERSIONINFO info1
;
1047 DWORD dwFlags
; /* Reserved */
1048 ULONGLONG
DECLSPEC_ALIGN(8) ullVersion
; /* 16 bits each for Major, Minor, Build, QFE */
1051 #define DLLVER_MAJOR_MASK 0xFFFF000000000000
1052 #define DLLVER_MINOR_MASK 0x0000FFFF00000000
1053 #define DLLVER_BUILD_MASK 0x00000000FFFF0000
1054 #define DLLVER_QFE_MASK 0x000000000000FFFF
1056 #define MAKEDLLVERULL(mjr, mnr, bld, qfe) (((ULONGLONG)(mjr)<< 48)| \
1057 ((ULONGLONG)(mnr)<< 32) | ((ULONGLONG)(bld)<< 16) | (ULONGLONG)(qfe))
1059 HRESULT WINAPI
DllInstall(BOOL
,LPCWSTR
) DECLSPEC_HIDDEN
;
1062 /* IsOS definitions */
1064 #define OS_WIN32SORGREATER 0x00
1066 #define OS_WIN95ORGREATER 0x02
1067 #define OS_NT4ORGREATER 0x03
1068 #define OS_WIN2000ORGREATER_ALT 0x04
1069 #define OS_WIN98ORGREATER 0x05
1070 #define OS_WIN98_GOLD 0x06
1071 #define OS_WIN2000ORGREATER 0x07
1072 #define OS_WIN2000PRO 0x08
1073 #define OS_WIN2000SERVER 0x09
1074 #define OS_WIN2000ADVSERVER 0x0A
1075 #define OS_WIN2000DATACENTER 0x0B
1076 #define OS_WIN2000TERMINAL 0x0C
1077 #define OS_EMBEDDED 0x0D
1078 #define OS_TERMINALCLIENT 0x0E
1079 #define OS_TERMINALREMOTEADMIN 0x0F
1080 #define OS_WIN95_GOLD 0x10
1081 #define OS_MEORGREATER 0x11
1082 #define OS_XPORGREATER 0x12
1083 #define OS_HOME 0x13
1084 #define OS_PROFESSIONAL 0x14
1085 #define OS_DATACENTER 0x15
1086 #define OS_ADVSERVER 0x16
1087 #define OS_SERVER 0x17
1088 #define OS_TERMINALSERVER 0x18
1089 #define OS_PERSONALTERMINALSERVER 0x19
1090 #define OS_FASTUSERSWITCHING 0x1A
1091 #define OS_WELCOMELOGONUI 0x1B
1092 #define OS_DOMAINMEMBER 0x1C
1093 #define OS_ANYSERVER 0x1D
1094 #define OS_WOW6432 0x1E
1095 #define OS_WEBSERVER 0x1F
1096 #define OS_SMALLBUSINESSSERVER 0x20
1097 #define OS_TABLETPC 0x21
1098 #define OS_SERVERADMINUI 0x22
1099 #define OS_MEDIACENTER 0x23
1100 #define OS_APPLIANCE 0x24
1102 BOOL WINAPI
IsOS(DWORD
);
1104 /* SHSetTimerQueueTimer definitions */
1105 #define TPS_EXECUTEIO 0x00000001
1106 #define TPS_LONGEXECTIME 0x00000008
1108 /* SHFormatDateTimeA/SHFormatDateTimeW flags */
1109 #define FDTF_SHORTTIME 0x00000001
1110 #define FDTF_SHORTDATE 0x00000002
1111 #define FDTF_DEFAULT (FDTF_SHORTDATE | FDTF_SHORTTIME)
1112 #define FDTF_LONGDATE 0x00000004
1113 #define FDTF_LONGTIME 0x00000008
1114 #define FDTF_RELATIVE 0x00000010
1115 #define FDTF_LTRDATE 0x00000100
1116 #define FDTF_RTLDATE 0x00000200
1117 #define FDTF_NOAUTOREADINGORDER 0x00000400
1126 HRESULT WINAPI
QISearch(void* base
, const QITAB
*pqit
, REFIID riid
, void **ppv
);
1128 #include <poppack.h>
1132 #endif /* defined(__cplusplus) */
1134 #endif /* __WINE_SHLWAPI_H */