VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/shellapi.h@ 20636

Last change on this file since 20636 was 19678, checked in by vboxsync, 16 years ago

opengl: update wine to 1.1.21, add d3d9.dll to build list

  • Property svn:eol-style set to native
File size: 17.1 KB
Line 
1/*
2 * Copyright (C) the Wine project
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19/*
20 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
21 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
22 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
23 * a choice of LGPL license versions is made available with the language indicating
24 * that LGPLv2 or any later version may be used, or where a choice of which version
25 * of the LGPL is applied is otherwise unspecified.
26 */
27
28#ifndef __WINE_SHELLAPI_H
29#define __WINE_SHELLAPI_H
30
31#ifdef __cplusplus
32extern "C" {
33#endif /* defined(__cplusplus) */
34
35#ifndef _WIN64
36#include <pshpack1.h>
37#endif
38
39DECLARE_HANDLE(HDROP);
40
41/******************************************
42 * DragObject
43 */
44
45typedef struct _DRAGINFOA
46{ UINT uSize;
47 POINT pt;
48 BOOL fNC;
49 LPSTR lpFileList;
50 DWORD grfKeyState;
51} DRAGINFOA, *LPDRAGINFOA;
52
53typedef struct _DRAGINFOW
54{ UINT uSize;
55 POINT pt;
56 BOOL fNC;
57 LPWSTR lpFileList;
58 DWORD grfKeyState;
59} DRAGINFOW, *LPDRAGINFOW;
60
61DECL_WINELIB_TYPE_AW(DRAGINFO)
62DECL_WINELIB_TYPE_AW(LPDRAGINFO)
63
64void WINAPI DragAcceptFiles(HWND hWnd, BOOL b);
65UINT WINAPI DragQueryFileA(HDROP hDrop, UINT lFile, LPSTR lpszFile, UINT lLength);
66UINT WINAPI DragQueryFileW(HDROP hDrop, UINT lFile, LPWSTR lpszFile, UINT lLength);
67#define DragQueryFile WINELIB_NAME_AW(DragQueryFile)
68void WINAPI DragFinish(HDROP h);
69BOOL WINAPI DragQueryPoint(HDROP hDrop, POINT *p);
70
71
72
73/******************************************
74 * Application Bar
75 */
76#define ABM_NEW 0x00000000
77#define ABM_REMOVE 0x00000001
78#define ABM_QUERYPOS 0x00000002
79#define ABM_SETPOS 0x00000003
80#define ABM_GETSTATE 0x00000004
81#define ABM_GETTASKBARPOS 0x00000005
82#define ABM_ACTIVATE 0x00000006
83#define ABM_GETAUTOHIDEBAR 0x00000007
84#define ABM_SETAUTOHIDEBAR 0x00000008
85#define ABM_WINDOWPOSCHANGED 0x00000009
86
87#define ABN_STATECHANGE 0x00000000
88#define ABN_POSCHANGED 0x00000001
89#define ABN_FULLSCREENAPP 0x00000002
90#define ABN_WINDOWARRANGE 0x00000003
91
92#define ABS_AUTOHIDE 0x00000001
93#define ABS_ALWAYSONTOP 0x00000002
94
95#define ABE_LEFT 0
96#define ABE_TOP 1
97#define ABE_RIGHT 2
98#define ABE_BOTTOM 3
99
100typedef struct _AppBarData
101{ DWORD cbSize;
102 HWND hWnd;
103 UINT uCallbackMessage;
104 UINT uEdge;
105 RECT rc;
106 LPARAM lParam;
107} APPBARDATA, *PAPPBARDATA;
108
109UINT_PTR WINAPI SHAppBarMessage(DWORD,PAPPBARDATA);
110
111/******************************************
112 * SHGetFileInfo
113 */
114
115#define SHGFI_LARGEICON 0x000000000 /* get large icon */
116#define SHGFI_SMALLICON 0x000000001 /* get small icon */
117#define SHGFI_OPENICON 0x000000002 /* get open icon */
118#define SHGFI_SHELLICONSIZE 0x000000004 /* get shell size icon */
119#define SHGFI_PIDL 0x000000008 /* pszPath is a pidl */
120#define SHGFI_USEFILEATTRIBUTES 0x000000010 /* use passed dwFileAttribute */
121#define SHGFI_ADDOVERLAYS 0x000000020
122#define SHGFI_OVERLAYINDEX 0x000000040
123#define SHGFI_ICON 0x000000100 /* get icon */
124#define SHGFI_DISPLAYNAME 0x000000200 /* get display name */
125#define SHGFI_TYPENAME 0x000000400 /* get type name */
126#define SHGFI_ATTRIBUTES 0x000000800 /* get attributes */
127#define SHGFI_ICONLOCATION 0x000001000 /* get icon location */
128#define SHGFI_EXETYPE 0x000002000 /* return exe type */
129#define SHGFI_SYSICONINDEX 0x000004000 /* get system icon index */
130#define SHGFI_LINKOVERLAY 0x000008000 /* put a link overlay on icon */
131#define SHGFI_SELECTED 0x000010000 /* show icon in selected state */
132#define SHGFI_ATTR_SPECIFIED 0x000020000 /* get only specified attributes */
133
134typedef struct tagSHFILEINFOA
135{ HICON hIcon; /* icon */
136 int iIcon; /* icon index */
137 DWORD dwAttributes; /* SFGAO_ flags */
138 CHAR szDisplayName[MAX_PATH];/* display name (or path) */
139 CHAR szTypeName[80]; /* type name */
140} SHFILEINFOA;
141
142typedef struct tagSHFILEINFOW
143{ HICON hIcon; /* icon */
144 int iIcon; /* icon index */
145 DWORD dwAttributes; /* SFGAO_ flags */
146 WCHAR szDisplayName[MAX_PATH];/* display name (or path) */
147 WCHAR szTypeName[80]; /* type name */
148} SHFILEINFOW;
149
150DECL_WINELIB_TYPE_AW(SHFILEINFO)
151
152DWORD_PTR WINAPI SHGetFileInfoA(LPCSTR,DWORD,SHFILEINFOA*,UINT,UINT);
153DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR,DWORD,SHFILEINFOW*,UINT,UINT);
154#define SHGetFileInfo WINELIB_NAME_AW(SHGetFileInfo)
155
156/******************************************
157 * SHSetFileInfo
158 */
159
160/******************************************
161* SHFileOperation
162*/
163#define FO_MOVE 0x0001
164#define FO_COPY 0x0002
165#define FO_DELETE 0x0003
166#define FO_RENAME 0x0004
167
168#define FOF_MULTIDESTFILES 0x0001
169#define FOF_CONFIRMMOUSE 0x0002
170#define FOF_SILENT 0x0004
171#define FOF_RENAMEONCOLLISION 0x0008
172#define FOF_NOCONFIRMATION 0x0010
173#define FOF_WANTMAPPINGHANDLE 0x0020
174#define FOF_ALLOWUNDO 0x0040
175#define FOF_FILESONLY 0x0080
176#define FOF_SIMPLEPROGRESS 0x0100
177#define FOF_NOCONFIRMMKDIR 0x0200
178#define FOF_NOERRORUI 0x0400
179#define FOF_NOCOPYSECURITYATTRIBS 0x0800
180#define FOF_NORECURSION 0x1000 /* don't do recursion into directories */
181#define FOF_NO_CONNECTED_ELEMENTS 0x2000 /* don't do connected files */
182#define FOF_WANTNUKEWARNING 0x4000 /* during delete operation, warn if delete instead
183 of recycling (even if FOF_NOCONFIRMATION) */
184#define FOF_NORECURSEREPARSE 0x8000 /* don't do recursion into reparse points */
185
186typedef WORD FILEOP_FLAGS;
187
188#define PO_DELETE 0x0013
189#define PO_RENAME 0x0014
190#define PO_PORTCHANGE 0x0020
191#define PO_REN_PORT (PO_RENAME | PO_PORTCHANGE)
192
193typedef WORD PRINTEROP_FLAGS;
194
195typedef struct _SHFILEOPSTRUCTA
196{ HWND hwnd;
197 UINT wFunc;
198 LPCSTR pFrom;
199 LPCSTR pTo;
200 FILEOP_FLAGS fFlags;
201 BOOL fAnyOperationsAborted;
202 LPVOID hNameMappings;
203 LPCSTR lpszProgressTitle;
204} SHFILEOPSTRUCTA, *LPSHFILEOPSTRUCTA;
205
206typedef struct _SHFILEOPSTRUCTW
207{ HWND hwnd;
208 UINT wFunc;
209 LPCWSTR pFrom;
210 LPCWSTR pTo;
211 FILEOP_FLAGS fFlags;
212 BOOL fAnyOperationsAborted;
213 LPVOID hNameMappings;
214 LPCWSTR lpszProgressTitle;
215} SHFILEOPSTRUCTW, *LPSHFILEOPSTRUCTW;
216
217#define SHFILEOPSTRUCT WINELIB_NAME_AW(SHFILEOPSTRUCT)
218#define LPSHFILEOPSTRUCT WINELIB_NAME_AW(LPSHFILEOPSTRUCT)
219
220int WINAPI SHFileOperationA (LPSHFILEOPSTRUCTA lpFileOp);
221int WINAPI SHFileOperationW (LPSHFILEOPSTRUCTW lpFileOp);
222#define SHFileOperation WINELIB_NAME_AW(SHFileOperation)
223
224typedef struct _SHNAMEMAPPINGA
225{
226 LPSTR pszOldPath;
227 LPSTR pszNewPath;
228 int cchOldPath;
229 int cchNewPath;
230} SHNAMEMAPPINGA, *LPSHNAMEMAPPINGA;
231
232typedef struct _SHNAMEMAPPINGW
233{
234 LPWSTR pszOldPath;
235 LPWSTR pszNewPath;
236 int cchOldPath;
237 int cchNewPath;
238} SHNAMEMAPPINGW, *LPSHNAMEMAPPINGW;
239
240DECL_WINELIB_TYPE_AW(SHNAMEMAPPING)
241DECL_WINELIB_TYPE_AW(LPSHNAMEMAPPING)
242
243void WINAPI SHFreeNameMappings(HANDLE hNameMappings);
244
245/******************************************
246 * ShellExecute
247 */
248#define SE_ERR_SHARE 26
249#define SE_ERR_ASSOCINCOMPLETE 27
250#define SE_ERR_DDETIMEOUT 28
251#define SE_ERR_DDEFAIL 29
252#define SE_ERR_DDEBUSY 30
253#define SE_ERR_NOASSOC 31
254
255HINSTANCE WINAPI ShellExecuteA(HWND,LPCSTR,LPCSTR,LPCSTR,LPCSTR,INT);
256HINSTANCE WINAPI ShellExecuteW(HWND,LPCWSTR,LPCWSTR,LPCWSTR,LPCWSTR,INT);
257#define ShellExecute WINELIB_NAME_AW(ShellExecute)
258
259#define SE_ERR_FNF 2 /* file not found */
260#define SE_ERR_PNF 3 /* path not found */
261#define SE_ERR_ACCESSDENIED 5 /* access denied */
262#define SE_ERR_OOM 8 /* out of memory */
263#define SE_ERR_DLLNOTFOUND 32
264#define SE_ERR_SHARE 26
265#define SE_ERR_ASSOCINCOMPLETE 27
266#define SE_ERR_DDETIMEOUT 28
267#define SE_ERR_DDEFAIL 29
268#define SE_ERR_DDEBUSY 30
269#define SE_ERR_NOASSOC 31
270
271#define SEE_MASK_CLASSNAME 0x00000001
272#define SEE_MASK_CLASSKEY 0x00000003
273#define SEE_MASK_IDLIST 0x00000004
274#define SEE_MASK_INVOKEIDLIST 0x0000000c
275#define SEE_MASK_ICON 0x00000010
276#define SEE_MASK_HOTKEY 0x00000020
277#define SEE_MASK_NOCLOSEPROCESS 0x00000040
278#define SEE_MASK_CONNECTNETDRV 0x00000080
279#define SEE_MASK_NOASYNC 0x00000100
280#define SEE_MASK_FLAG_DDEWAIT SEE_MASK_NOASYNC
281#define SEE_MASK_DOENVSUBST 0x00000200
282#define SEE_MASK_FLAG_NO_UI 0x00000400
283#define SEE_MASK_UNICODE 0x00004000
284#define SEE_MASK_NO_CONSOLE 0x00008000
285#define SEE_MASK_ASYNCOK 0x00100000
286#define SEE_MASK_HMONITOR 0x00200000
287#define SEE_MASK_NOZONECHECKS 0x00800000
288#define SEE_MASK_NOQUERYCLASSSTORE 0x01000000
289#define SEE_MASK_WAITFORINPUTIDLE 0x02000000
290#define SEE_MASK_FLAG_LOG_USAGE 0x04000000
291
292typedef struct _SHELLEXECUTEINFOA
293{ DWORD cbSize;
294 ULONG fMask;
295 HWND hwnd;
296 LPCSTR lpVerb;
297 LPCSTR lpFile;
298 LPCSTR lpParameters;
299 LPCSTR lpDirectory;
300 INT nShow;
301 HINSTANCE hInstApp;
302 /* Optional fields */
303 LPVOID lpIDList;
304 LPCSTR lpClass;
305 HKEY hkeyClass;
306 DWORD dwHotKey;
307 union
308 { HANDLE hIcon;
309 HANDLE hMonitor;
310 } DUMMYUNIONNAME;
311 HANDLE hProcess;
312} SHELLEXECUTEINFOA, *LPSHELLEXECUTEINFOA;
313
314typedef struct _SHELLEXECUTEINFOW
315{ DWORD cbSize;
316 ULONG fMask;
317 HWND hwnd;
318 LPCWSTR lpVerb;
319 LPCWSTR lpFile;
320 LPCWSTR lpParameters;
321 LPCWSTR lpDirectory;
322 INT nShow;
323 HINSTANCE hInstApp;
324 /* Optional fields*/
325 LPVOID lpIDList;
326 LPCWSTR lpClass;
327 HKEY hkeyClass;
328 DWORD dwHotKey;
329 union
330 { HANDLE hIcon;
331 HANDLE hMonitor;
332 } DUMMYUNIONNAME;
333 HANDLE hProcess;
334} SHELLEXECUTEINFOW, *LPSHELLEXECUTEINFOW;
335
336#define SHELLEXECUTEINFO WINELIB_NAME_AW(SHELLEXECUTEINFO)
337#define LPSHELLEXECUTEINFO WINELIB_NAME_AW(LPSHELLEXECUTEINFO)
338
339BOOL WINAPI ShellExecuteExA(LPSHELLEXECUTEINFOA lpExecInfo);
340BOOL WINAPI ShellExecuteExW(LPSHELLEXECUTEINFOW lpExecInfo);
341#define ShellExecuteEx WINELIB_NAME_AW(ShellExecuteEx)
342
343void WINAPI WinExecErrorA(HWND hwnd,INT error, LPCSTR lpstrFileName, LPCSTR lpstrTitle);
344void WINAPI WinExecErrorW(HWND hwnd,INT error, LPCWSTR lpstrFileName, LPCWSTR lpstrTitle);
345#define WinExecError WINELIB_NAME_AW(WinExecError)
346
347/******************************************
348 * Tray Notification
349 */
350/* notifyicondata.uFlags values*/
351#define NIF_MESSAGE 0x00000001
352#define NIF_ICON 0x00000002
353#define NIF_TIP 0x00000004
354#define NIF_STATE 0x00000008
355#define NIF_INFO 0x00000010
356#define NIF_GUID 0x00000020
357#define NIF_REALTIME 0x00000040
358#define NIF_SHOWTIP 0x00000080
359
360/* notifyicondata.dwState values */
361#define NIS_HIDDEN 0x00000001
362#define NIS_SHAREDICON 0x00000002
363
364/* notifyicondata.dwInfoFlags values */
365#define NIIF_NONE 0x00000000
366#define NIIF_INFO 0x00000001
367#define NIIF_WARNING 0x00000002
368#define NIIF_ERROR 0x00000003
369#define NIIF_USER 0x00000004
370#define NIIF_ICONMASK 0x0000000f
371#define NIIF_NOSOUND 0x00000010
372#define NIIF_LARGEICON 0x00000020
373
374/* dwMessage values */
375#define NIM_ADD 0x00000000
376#define NIM_MODIFY 0x00000001
377#define NIM_DELETE 0x00000002
378#define NIM_SETFOCUS 0x00000003
379#define NIM_SETVERSION 0x00000004
380
381#define NOTIFY_VERSION 3 /* supported by Windows 2000 and later */
382#define NOTIFY_VERSION_4 4 /* supported by Windows Vista */
383
384/* callback message lParam values */
385#define NIN_SELECT (WM_USER+0)
386#define NINF_KEY 1
387#define NIN_KEYSELECT (NIN_SELECT|NINF_KEY) /* WM_USER+1 */
388#define NIN_BALOONSHOW (WM_USER+2)
389#define NIN_BALOONHIDE (WM_USER+3)
390#define NIN_BALOONTIMEOUT (WM_USER+4)
391#define NIN_BALOONCLICK (WM_USER+5)
392#define NIN_POPUPOPEN (WM_USER+6)
393#define NIN_POPUPCLOSE (WM_USER+7)
394
395typedef struct _NOTIFYICONDATAA
396{ DWORD cbSize;
397 HWND hWnd;
398 UINT uID;
399 UINT uFlags;
400 UINT uCallbackMessage;
401 HICON hIcon;
402 CHAR szTip[128];
403 DWORD dwState;
404 DWORD dwStateMask;
405 CHAR szInfo[256];
406 union {
407 UINT uTimeout;
408 UINT uVersion;
409 } DUMMYUNIONNAME;
410 CHAR szInfoTitle[64];
411 DWORD dwInfoFlags;
412 GUID guidItem;
413 HICON hBalloonIcon;
414} NOTIFYICONDATAA, *PNOTIFYICONDATAA;
415
416typedef struct _NOTIFYICONDATAW
417{ DWORD cbSize;
418 HWND hWnd;
419 UINT uID;
420 UINT uFlags;
421 UINT uCallbackMessage;
422 HICON hIcon;
423 WCHAR szTip[128];
424 DWORD dwState;
425 DWORD dwStateMask;
426 WCHAR szInfo[256];
427 union {
428 UINT uTimeout;
429 UINT uVersion;
430 } DUMMYUNIONNAME;
431 WCHAR szInfoTitle[64];
432 DWORD dwInfoFlags;
433 GUID guidItem;
434 HICON hBalloonIcon;
435} NOTIFYICONDATAW, *PNOTIFYICONDATAW;
436
437DECL_WINELIB_TYPE_AW(NOTIFYICONDATA)
438DECL_WINELIB_TYPE_AW(PNOTIFYICONDATA)
439
440BOOL WINAPI Shell_NotifyIconA(DWORD dwMessage, PNOTIFYICONDATAA lpData);
441BOOL WINAPI Shell_NotifyIconW(DWORD dwMessage, PNOTIFYICONDATAW lpData);
442
443#define Shell_NotifyIcon WINELIB_NAME_AW(Shell_NotifyIcon)
444
445/* pre IE 5.0 */
446#define NOTIFYICONDATAA_V1_SIZE FIELD_OFFSET(NOTIFYICONDATAA, szTip[64])
447#define NOTIFYICONDATAW_V1_SIZE FIELD_OFFSET(NOTIFYICONDATAW, szTip[64])
448
449/* pre Window XP */
450#define NOTIFYICONDATAA_V2_SIZE FIELD_OFFSET(NOTIFYICONDATAA, guidItem)
451#define NOTIFYICONDATAW_V2_SIZE FIELD_OFFSET(NOTIFYICONDATAW, guidItem)
452
453/* pre Window Vista */
454#define NOTIFYICONDATAA_V3_SIZE FIELD_OFFSET(NOTIFYICONDATAA, hBalloonIcon)
455#define NOTIFYICONDATAW_V3_SIZE FIELD_OFFSET(NOTIFYICONDATAW, hBalloonIcon)
456
457
458/******************************************
459 * Links
460 */
461
462#define SHGNLI_PIDL 0x01
463#define SHGNLI_PREFIXNAME 0x02
464#define SHGNLI_NOUNIQUE 0x04
465#define SHGNLI_NOLNK 0x08
466
467BOOL WINAPI SHGetNewLinkInfoA(LPCSTR,LPCSTR,LPSTR,BOOL*,UINT);
468BOOL WINAPI SHGetNewLinkInfoW(LPCWSTR,LPCWSTR,LPWSTR,BOOL*,UINT);
469#define SHGetNewLinkInfo WINELIB_NAME_AW(SHGetNewLinkInfo)
470
471/******************************************
472 * Recycle bin
473 */
474
475typedef struct _SHQUERYRBINFO
476{
477 DWORD cbSize;
478 DWORDLONG i64Size;
479 DWORDLONG i64NumItems;
480} SHQUERYRBINFO, *LPSHQUERYRBINFO;
481
482HRESULT WINAPI SHEmptyRecycleBinA(HWND,LPCSTR,DWORD);
483HRESULT WINAPI SHEmptyRecycleBinW(HWND,LPCWSTR,DWORD);
484#define SHEmptyRecycleBin WINELIB_NAME_AW(SHEmptyRecycleBin)
485HRESULT WINAPI SHQueryRecycleBinA(LPCSTR,LPSHQUERYRBINFO);
486HRESULT WINAPI SHQueryRecycleBinW(LPCWSTR,LPSHQUERYRBINFO);
487#define SHQueryRecycleBin WINELIB_NAME_AW(SHQueryRecycleBin)
488
489/******************************************
490 * Misc
491 */
492
493LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR,int*);
494HICON WINAPI ExtractIconA(HINSTANCE,LPCSTR,UINT);
495HICON WINAPI ExtractIconW(HINSTANCE,LPCWSTR,UINT);
496#define ExtractIcon WINELIB_NAME_AW(ExtractIcon)
497HICON WINAPI ExtractAssociatedIconA(HINSTANCE,LPSTR,LPWORD);
498HICON WINAPI ExtractAssociatedIconW(HINSTANCE,LPWSTR,LPWORD);
499#define ExtractAssociatedIcon WINELIB_NAME_AW(ExtractAssociatedIcon)
500HICON WINAPI ExtractAssociatedIconExA(HINSTANCE,LPSTR,LPWORD,LPWORD);
501HICON WINAPI ExtractAssociatedIconExW(HINSTANCE,LPWSTR,LPWORD,LPWORD);
502#define ExtractAssociatedIconEx WINELIB_NAME_AW(ExtractAssociatedIconEx)
503UINT WINAPI ExtractIconExA(LPCSTR,INT,HICON*,HICON*,UINT);
504UINT WINAPI ExtractIconExW(LPCWSTR,INT,HICON*,HICON*,UINT);
505#define ExtractIconEx WINELIB_NAME_AW(ExtractIconEx)
506HINSTANCE WINAPI FindExecutableA(LPCSTR,LPCSTR,LPSTR);
507HINSTANCE WINAPI FindExecutableW(LPCWSTR,LPCWSTR,LPWSTR);
508#define FindExecutable WINELIB_NAME_AW(FindExecutable)
509BOOL WINAPI ShellAboutA(HWND,LPCSTR,LPCSTR,HICON);
510BOOL WINAPI ShellAboutW(HWND,LPCWSTR,LPCWSTR,HICON);
511#define ShellAbout WINELIB_NAME_AW(ShellAbout)
512int WINAPIV ShellMessageBoxA(HINSTANCE,HWND,LPCSTR,LPCSTR,UINT,...);
513int WINAPIV ShellMessageBoxW(HINSTANCE,HWND,LPCWSTR,LPCWSTR,UINT,...);
514#define ShellMessageBox WINELIB_NAME_AW(ShellMessageBox)
515DWORD WINAPI DoEnvironmentSubstA(LPSTR, UINT);
516DWORD WINAPI DoEnvironmentSubstW(LPWSTR, UINT);
517#define DoEnvironmentSubst WINELIB_NAME_AW(DoEnvironmentSubst)
518
519
520#ifdef __cplusplus
521} /* extern "C" */
522#endif /* defined(__cplusplus) */
523
524#ifndef _WIN64
525#include <poppack.h>
526#endif
527
528#endif /* __WINE_SHELLAPI_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette