blob: 67b18a20fb8df20f9a60980811a886f02a1c6a4a [file] [log] [blame]
Jon Griffiths7a6bad82001-01-22 02:13:58 +00001/*
Alexandre Julliard3a405ba1994-10-30 16:25:19 +00002 * COMMDLG - Common Wine Dialog ... :-)
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00003 *
4 * Copyright (C) the Wine project
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard3a405ba1994-10-30 16:25:19 +000019 */
20
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000021#ifndef __WINE_COMMDLG_H
22#define __WINE_COMMDLG_H
23
24#ifdef __cplusplus
25extern "C" {
26#endif
Alexandre Julliard3a405ba1994-10-30 16:25:19 +000027
Dimitrie O. Paun53f9c212003-08-28 21:43:34 +000028#include <prsht.h>
Maarten Lankhorst424caea2008-12-13 23:06:48 +010029#ifndef _WIN64
Dimitrie O. Paun53f9c212003-08-28 21:43:34 +000030#include <pshpack1.h>
Maarten Lankhorst424caea2008-12-13 23:06:48 +010031#endif
Alexandre Julliard1285c2f1996-05-06 16:06:24 +000032
György 'Nog' Jeneyba060422002-09-30 18:51:33 +000033#ifndef SNDMSG
34#ifdef __cplusplus
35#define SNDMSG ::SendMessage
36#else /* __cplusplus */
37#define SNDMSG SendMessage
38#endif /* __cplusplus */
39#endif /* SNDMSG */
40
Alexandre Julliard3a405ba1994-10-30 16:25:19 +000041#define OFN_READONLY 0x00000001
42#define OFN_OVERWRITEPROMPT 0x00000002
43#define OFN_HIDEREADONLY 0x00000004
44#define OFN_NOCHANGEDIR 0x00000008
45#define OFN_SHOWHELP 0x00000010
46#define OFN_ENABLEHOOK 0x00000020
47#define OFN_ENABLETEMPLATE 0x00000040
48#define OFN_ENABLETEMPLATEHANDLE 0x00000080
49#define OFN_NOVALIDATE 0x00000100
50#define OFN_ALLOWMULTISELECT 0x00000200
51#define OFN_EXTENSIONDIFFERENT 0x00000400
52#define OFN_PATHMUSTEXIST 0x00000800
53#define OFN_FILEMUSTEXIST 0x00001000
54#define OFN_CREATEPROMPT 0x00002000
55#define OFN_SHAREAWARE 0x00004000
56#define OFN_NOREADONLYRETURN 0x00008000
57#define OFN_NOTESTFILECREATE 0x00010000
Vincent Béron9a624912002-05-31 23:06:46 +000058#define OFN_NONETWORKBUTTON 0x00020000
Alexandre Julliard60ce85c1998-02-01 18:33:27 +000059#define OFN_NOLONGNAMES 0x00040000
60#define OFN_EXPLORER 0x00080000
61#define OFN_NODEREFERENCELINKS 0x00100000
62#define OFN_LONGNAMES 0x00200000
Francois Gougetafddcfd2000-09-27 22:31:28 +000063#define OFN_ENABLEINCLUDENOTIFY 0x00400000
64#define OFN_ENABLESIZING 0x00800000
Juergen Schmiedebcc72c2000-11-01 01:50:21 +000065#define OFN_DONTADDTORECENT 0x02000000
66#define OFN_FORCESHOWHIDDEN 0x10000000
Alexandre Julliard60ce85c1998-02-01 18:33:27 +000067
Alexandre Julliard3a405ba1994-10-30 16:25:19 +000068#define OFN_SHAREFALLTHROUGH 2
69#define OFN_SHARENOWARN 1
70#define OFN_SHAREWARN 0
71
Francois Boisvert87b81de1999-07-27 16:20:36 +000072#define SAVE_DIALOG 1
73#define OPEN_DIALOG 2
Vincent Béron9a624912002-05-31 23:06:46 +000074
Ricardo Filiped904d132009-02-08 12:20:47 +000075typedef UINT_PTR (CALLBACK *LPOFNHOOKPROC)(HWND,UINT,WPARAM,LPARAM);
Paul Quinnaaa83061999-06-05 15:23:20 +000076
Jon Griffiths880c0c82004-05-27 20:00:51 +000077typedef struct tagOFNA {
Alexandre Julliard3a405ba1994-10-30 16:25:19 +000078 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +000079 HWND hwndOwner;
80 HINSTANCE hInstance;
Alexandre Julliard33072e11997-06-29 18:08:02 +000081 LPCSTR lpstrFilter;
82 LPSTR lpstrCustomFilter;
83 DWORD nMaxCustFilter;
84 DWORD nFilterIndex;
85 LPSTR lpstrFile;
86 DWORD nMaxFile;
87 LPSTR lpstrFileTitle;
88 DWORD nMaxFileTitle;
89 LPCSTR lpstrInitialDir;
90 LPCSTR lpstrTitle;
91 DWORD Flags;
92 WORD nFileOffset;
93 WORD nFileExtension;
94 LPCSTR lpstrDefExt;
95 LPARAM lCustData;
Paul Quinnaaa83061999-06-05 15:23:20 +000096 LPOFNHOOKPROC lpfnHook;
Alexandre Julliard33072e11997-06-29 18:08:02 +000097 LPCSTR lpTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +000098} OPENFILENAMEA,*LPOPENFILENAMEA;
Alexandre Julliard33072e11997-06-29 18:08:02 +000099
Jon Griffiths880c0c82004-05-27 20:00:51 +0000100typedef struct tagOFNW {
Alexandre Julliard33072e11997-06-29 18:08:02 +0000101 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000102 HWND hwndOwner;
103 HINSTANCE hInstance;
Alexandre Julliard33072e11997-06-29 18:08:02 +0000104 LPCWSTR lpstrFilter;
105 LPWSTR lpstrCustomFilter;
106 DWORD nMaxCustFilter;
107 DWORD nFilterIndex;
108 LPWSTR lpstrFile;
109 DWORD nMaxFile;
110 LPWSTR lpstrFileTitle;
111 DWORD nMaxFileTitle;
112 LPCWSTR lpstrInitialDir;
113 LPCWSTR lpstrTitle;
114 DWORD Flags;
115 WORD nFileOffset;
116 WORD nFileExtension;
117 LPCWSTR lpstrDefExt;
118 LPARAM lCustData;
Paul Quinnaaa83061999-06-05 15:23:20 +0000119 LPOFNHOOKPROC lpfnHook;
Alexandre Julliard33072e11997-06-29 18:08:02 +0000120 LPCWSTR lpTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000121} OPENFILENAMEW,*LPOPENFILENAMEW;
Alexandre Julliard33072e11997-06-29 18:08:02 +0000122
Alexandre Julliarda845b881998-06-01 10:44:35 +0000123DECL_WINELIB_TYPE_AW(OPENFILENAME)
124DECL_WINELIB_TYPE_AW(LPOPENFILENAME)
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000125
Kevin Koltzau201da332004-01-08 05:16:23 +0000126#ifndef CDSIZEOF_STRUCT
127#define CDSIZEOF_STRUCT(type,field) ((int)&(((type *)0)->field) + sizeof(((type*)0)->field))
128#endif
129
130#define OPENFILENAME_SIZE_VERSION_400A CDSIZEOF_STRUCT(OPENFILENAMEA,lpTemplateName)
131#define OPENFILENAME_SIZE_VERSION_400W CDSIZEOF_STRUCT(OPENFILENAMEW,lpTemplateName)
132#define OPENFILENAME_SIZE_VERSION_400 WINELIB_NAME_AW(OPENFILENAME_SIZE_VERSION_400)
133
134
Paul Quinn1beaae51998-12-15 15:38:36 +0000135typedef struct
136{
137 NMHDR hdr;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000138 LPOPENFILENAMEA lpOFN;
Paul Quinn1beaae51998-12-15 15:38:36 +0000139 LPSTR pszFile;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000140} OFNOTIFYA, *LPOFNOTIFYA;
Paul Quinn1beaae51998-12-15 15:38:36 +0000141
142typedef struct
143{
144 NMHDR hdr;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000145 LPOPENFILENAMEW lpOFN;
Paul Quinn1beaae51998-12-15 15:38:36 +0000146 LPWSTR pszFile;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000147} OFNOTIFYW, *LPOFNOTIFYW;
Paul Quinn1beaae51998-12-15 15:38:36 +0000148
149DECL_WINELIB_TYPE_AW(OFNOTIFY)
150DECL_WINELIB_TYPE_AW(LPOFNOTIFY)
Vincent Béron9a624912002-05-31 23:06:46 +0000151
Ricardo Filipe810508f2008-12-17 21:33:37 +0000152typedef struct _OFNOTIFYEXA
153{
154 NMHDR hdr;
155 LPOPENFILENAMEA lpOFN;
156 LPVOID psf;
157 LPVOID pidl;
158} OFNOTIFYEXA, *LPOFNOTIFYEXA;
159
160typedef struct _OFNOTIFYEXW
161{
162 NMHDR hdr;
163 LPOPENFILENAMEW lpOFN;
164 LPVOID psf;
165 LPVOID pidl;
166} OFNOTIFYEXW, *LPOFNOTIFYEXW;
167
168DECL_WINELIB_TYPE_AW(OFNOTIFYEX)
169DECL_WINELIB_TYPE_AW(LPOFNOTIFYEX)
170
Ricardo Filiped904d132009-02-08 12:20:47 +0000171typedef UINT_PTR (CALLBACK *LPCCHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000172
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000173typedef struct {
174 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000175 HWND hwndOwner;
François Gouget980eeec2001-01-05 03:45:40 +0000176 HWND hInstance; /* Should be an HINSTANCE but MS made a typo */
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000177 DWORD rgbResult;
178 LPDWORD lpCustColors;
179 DWORD Flags;
180 DWORD lCustData;
181 LPCCHOOKPROC lpfnHook;
182 LPCSTR lpTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000183} CHOOSECOLORA;
184typedef CHOOSECOLORA *LPCHOOSECOLORA;
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000185
186typedef struct {
187 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000188 HWND hwndOwner;
François Gouget980eeec2001-01-05 03:45:40 +0000189 HWND hInstance; /* Should be an HINSTANCE but MS made a typo */
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000190 DWORD rgbResult;
Gerard Patel73242952000-04-24 17:35:11 +0000191 LPDWORD lpCustColors;
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000192 DWORD Flags;
193 DWORD lCustData;
194 LPCCHOOKPROC lpfnHook;
195 LPCWSTR lpTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000196} CHOOSECOLORW;
197typedef CHOOSECOLORW *LPCHOOSECOLORW;
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000198
Alexandre Julliarda845b881998-06-01 10:44:35 +0000199DECL_WINELIB_TYPE_AW(CHOOSECOLOR)
200DECL_WINELIB_TYPE_AW(LPCHOOSECOLOR)
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000201
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000202
203#define CC_RGBINIT 0x00000001
204#define CC_FULLOPEN 0x00000002
205#define CC_PREVENTFULLOPEN 0x00000004
206#define CC_SHOWHELP 0x00000008
207#define CC_ENABLEHOOK 0x00000010
208#define CC_ENABLETEMPLATE 0x00000020
209#define CC_ENABLETEMPLATEHANDLE 0x00000040
Francois Gouget8a21fca2000-11-08 05:02:50 +0000210#define CC_SOLIDCOLOR 0x00000080
211#define CC_ANYCOLOR 0x00000100
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000212
Ricardo Filiped904d132009-02-08 12:20:47 +0000213typedef UINT_PTR (CALLBACK *LPFRHOOKPROC)(HWND,UINT,WPARAM,LPARAM);
Paul Quinnaaa83061999-06-05 15:23:20 +0000214
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000215typedef struct {
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000216 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000217 HWND hwndOwner;
218 HINSTANCE hInstance;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000219 DWORD Flags;
220 LPSTR lpstrFindWhat;
221 LPSTR lpstrReplaceWith;
222 WORD wFindWhatLen;
223 WORD wReplaceWithLen;
224 LPARAM lCustData;
Paul Quinnaaa83061999-06-05 15:23:20 +0000225 LPFRHOOKPROC lpfnHook;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000226 LPCSTR lpTemplateName;
Huw D M Daviesb40a9b72000-05-26 22:26:06 +0000227} FINDREPLACEA, *LPFINDREPLACEA;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000228
229typedef struct {
230 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000231 HWND hwndOwner;
232 HINSTANCE hInstance;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000233 DWORD Flags;
234 LPWSTR lpstrFindWhat;
235 LPWSTR lpstrReplaceWith;
236 WORD wFindWhatLen;
237 WORD wReplaceWithLen;
238 LPARAM lCustData;
Paul Quinnaaa83061999-06-05 15:23:20 +0000239 LPFRHOOKPROC lpfnHook;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000240 LPCWSTR lpTemplateName;
Huw D M Daviesb40a9b72000-05-26 22:26:06 +0000241} FINDREPLACEW, *LPFINDREPLACEW;
Vincent Béron9a624912002-05-31 23:06:46 +0000242
Alexandre Julliarda845b881998-06-01 10:44:35 +0000243DECL_WINELIB_TYPE_AW(FINDREPLACE)
244DECL_WINELIB_TYPE_AW(LPFINDREPLACE)
Vincent Béron9a624912002-05-31 23:06:46 +0000245
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000246#define FR_DOWN 0x00000001
247#define FR_WHOLEWORD 0x00000002
248#define FR_MATCHCASE 0x00000004
249#define FR_FINDNEXT 0x00000008
250#define FR_REPLACE 0x00000010
251#define FR_REPLACEALL 0x00000020
252#define FR_DIALOGTERM 0x00000040
253#define FR_SHOWHELP 0x00000080
254#define FR_ENABLEHOOK 0x00000100
255#define FR_ENABLETEMPLATE 0x00000200
256#define FR_NOUPDOWN 0x00000400
257#define FR_NOMATCHCASE 0x00000800
258#define FR_NOWHOLEWORD 0x00001000
259#define FR_ENABLETEMPLATEHANDLE 0x00002000
260#define FR_HIDEUPDOWN 0x00004000
261#define FR_HIDEMATCHCASE 0x00008000
262#define FR_HIDEWHOLEWORD 0x00010000
Phil Krylov5d8ffdc2003-08-11 18:42:18 +0000263#define FR_MATCHDIAC 0x20000000
264#define FR_MATCHKASHIDA 0x40000000
265#define FR_MATCHALEFHAMZA 0x80000000
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000266
Vincent Povirke37bbd62010-02-15 14:13:16 -0600267typedef UINT_PTR (CALLBACK *LPCFHOOKPROC)(HWND,UINT,WPARAM,LPARAM);
Paul Quinnaaa83061999-06-05 15:23:20 +0000268
Jon Griffiths39bbcb42004-09-20 19:13:16 +0000269typedef struct tagCHOOSEFONTA
Alexandre Julliard54c27111998-03-29 19:44:57 +0000270{
Vincent Béron9a624912002-05-31 23:06:46 +0000271 UINT lStructSize;
272 HWND hwndOwner;
273 HDC hDC;
274 LPLOGFONTA lpLogFont;
275 INT iPointSize;
276 DWORD Flags;
277 COLORREF rgbColors;
278 LPARAM lCustData;
279 LPCFHOOKPROC lpfnHook;
280 LPCSTR lpTemplateName;
281 HINSTANCE hInstance;
282 LPSTR lpszStyle;
283 WORD nFontType;
284 WORD ___MISSING_ALIGNMENT__;
285 INT nSizeMin;
286 INT nSizeMax;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000287} CHOOSEFONTA, *LPCHOOSEFONTA;
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000288
Jon Griffiths39bbcb42004-09-20 19:13:16 +0000289typedef struct tagCHOOSEFONTW
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000290{
Vincent Béron9a624912002-05-31 23:06:46 +0000291 UINT lStructSize;
292 HWND hwndOwner;
293 HDC hDC;
294 LPLOGFONTW lpLogFont;
295 INT iPointSize;
296 DWORD Flags;
297 COLORREF rgbColors;
298 LPARAM lCustData;
299 LPCFHOOKPROC lpfnHook;
300 LPCWSTR lpTemplateName;
301 HINSTANCE hInstance;
302 LPWSTR lpszStyle;
303 WORD nFontType;
304 WORD ___MISSING_ALIGNMENT__;
305 INT nSizeMin;
306 INT nSizeMax;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000307} CHOOSEFONTW, *LPCHOOSEFONTW;
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000308
Alexandre Julliarda845b881998-06-01 10:44:35 +0000309DECL_WINELIB_TYPE_AW(CHOOSEFONT)
310DECL_WINELIB_TYPE_AW(LPCHOOSEFONT)
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000311
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000312#define CF_SCREENFONTS 0x00000001
313#define CF_PRINTERFONTS 0x00000002
314#define CF_BOTH (CF_SCREENFONTS | CF_PRINTERFONTS)
315#define CF_SHOWHELP 0x00000004L
316#define CF_ENABLEHOOK 0x00000008L
317#define CF_ENABLETEMPLATE 0x00000010L
318#define CF_ENABLETEMPLATEHANDLE 0x00000020L
319#define CF_INITTOLOGFONTSTRUCT 0x00000040L
320#define CF_USESTYLE 0x00000080L
321#define CF_EFFECTS 0x00000100L
322#define CF_APPLY 0x00000200L
323#define CF_ANSIONLY 0x00000400L
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000324#define CF_SCRIPTSONLY CF_ANSIONLY
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000325#define CF_NOVECTORFONTS 0x00000800L
326#define CF_NOOEMFONTS CF_NOVECTORFONTS
327#define CF_NOSIMULATIONS 0x00001000L
328#define CF_LIMITSIZE 0x00002000L
329#define CF_FIXEDPITCHONLY 0x00004000L
330#define CF_WYSIWYG 0x00008000L /* use with CF_SCREENFONTS & CF_PRINTERFONTS */
331#define CF_FORCEFONTEXIST 0x00010000L
332#define CF_SCALABLEONLY 0x00020000L
333#define CF_TTONLY 0x00040000L
334#define CF_NOFACESEL 0x00080000L
335#define CF_NOSTYLESEL 0x00100000L
336#define CF_NOSIZESEL 0x00200000L
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000337#define CF_SELECTSCRIPT 0x00400000L
338#define CF_NOSCRIPTSEL 0x00800000L
339#define CF_NOVERTFONTS 0x01000000L
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000340
341#define SIMULATED_FONTTYPE 0x8000
342#define PRINTER_FONTTYPE 0x4000
343#define SCREEN_FONTTYPE 0x2000
344#define BOLD_FONTTYPE 0x0100
345#define ITALIC_FONTTYPE 0x0200
346#define REGULAR_FONTTYPE 0x0400
347
348#define WM_CHOOSEFONT_GETLOGFONT (WM_USER + 1)
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000349#define WM_CHOOSEFONT_SETLOGFONT (WM_USER + 101)
350#define WM_CHOOSEFONT_SETFLAGS (WM_USER + 102)
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000351
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000352#define LBSELCHSTRINGA "commdlg_LBSelChangedNotify"
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000353#if defined(__GNUC__)
354# define LBSELCHSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \
355 'L','B','S','e','l','C','h','a','n','g','e','d','N','o','t','i','f','y',0 }
356#elif defined(_MSC_VER)
357# define LBSELCHSTRINGW L"commdlg_LBSelChangedNotify"
358#else
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000359static const WCHAR LBSELCHSTRINGW[] = { 'c','o','m','m','d','l','g','_',
360 'L','B','S','e','l','C','h','a','n','g','e','d','N','o','t','i','f','y',0 };
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000361#endif
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000362#define LBSELCHSTRING WINELIB_NAME_AW(LBSELCHSTRING)
363
364#define SHAREVISTRINGA "commdlg_ShareViolation"
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000365#if defined(__GNUC__)
366# define SHAREVISTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \
367 'S','h','a','r','e','V','i','o','l','a','t','i','o','n',0 }
368#elif defined(_MSC_VER)
369# define SHAREVISTRINGW L"commdlg_ShareViolation"
370#else
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000371static const WCHAR SHAREVISTRINGW[] = { 'c','o','m','m','d','l','g','_',
372 'S','h','a','r','e','V','i','o','l','a','t','i','o','n',0 };
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000373#endif
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000374#define SHAREVISTRING WINELIB_NAME_AW(SHAREVISTRING)
375
376#define FILEOKSTRINGA "commdlg_FileNameOK"
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000377#if defined(__GNUC__)
378# define FILEOKSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \
379 'F','i','l','e','N','a','m','e','O','K',0 }
380#elif defined(_MSC_VER)
381# define FILEOKSTRINGW L"commdlg_FileNameOK"
382#else
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000383static const WCHAR FILEOKSTRINGW[] = { 'c','o','m','m','d','l','g','_',
384 'F','i','l','e','N','a','m','e','O','K',0 };
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000385#endif
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000386#define FILEOKSTRING WINELIB_NAME_AW(FILEOKSTRING)
387
388#define COLOROKSTRINGA "commdlg_ColorOK"
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000389#if defined(__GNUC__)
390# define COLOROKSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \
391 'C','o','l','o','r','O','K',0 }
392#elif defined(_MSC_VER)
393# define COLOROKSTRINGW L"commdlg_ColorOK"
394#else
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000395static const WCHAR COLOROKSTRINGW[] = { 'c','o','m','m','d','l','g','_',
396 'C','o','l','o','r','O','K',0 };
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000397#endif
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000398#define COLOROKSTRING WINELIB_NAME_AW(COLOROKSTRING)
399
400#define SETRGBSTRINGA "commdlg_SetRGBColor"
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000401#if defined(__GNUC__)
402# define SETRGBSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \
403 'S','e','t','R','G','B','C','o','l','o','r',0 }
404#elif defined(_MSC_VER)
405# define SETRGBSTRINGW L"commdlg_SetRGBColor"
406#else
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000407static const WCHAR SETRGBSTRINGW[] = { 'c','o','m','m','d','l','g','_',
408 'S','e','t','R','G','B','C','o','l','o','r',0 };
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000409#endif
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000410#define SETRGBSTRING WINELIB_NAME_AW(SETRGBSTRING)
411
412#define FINDMSGSTRINGA "commdlg_FindReplace"
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000413#if defined(__GNUC__)
414# define FINDMSGSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \
415 'F','i','n','d','R','e','p','l','a','c','e',0 }
416#elif defined(_MSC_VER)
417# define FINDMSGSTRINGW L"commdlg_FindReplace"
418#else
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000419static const WCHAR FINDMSGSTRINGW[] = { 'c','o','m','m','d','l','g','_',
420 'F','i','n','d','R','e','p','l','a','c','e',0 };
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000421#endif
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000422#define FINDMSGSTRING WINELIB_NAME_AW(FINDMSGSTRING)
423
424#define HELPMSGSTRINGA "commdlg_help"
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000425#if defined(__GNUC__)
426# define HELPMSGSTRINGW (const WCHAR []){ 'c','o','m','m','d','l','g','_', \
427 'H','e','l','p',0 }
428#elif defined(_MSC_VER)
429# define HELPMSGSTRINGW L"commdlg_help"
430#else
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000431static const WCHAR HELPMSGSTRINGW[] = { 'c','o','m','m','d','l','g','_',
432 'H','e','l','p',0 };
Dmitry Timoshkova9c057f2002-09-16 19:29:36 +0000433#endif
Jon Griffiths7a6bad82001-01-22 02:13:58 +0000434#define HELPMSGSTRING WINELIB_NAME_AW(HELPMSGSTRING)
435
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000436#define CD_LBSELNOITEMS -1
437#define CD_LBSELCHANGE 0
438#define CD_LBSELSUB 1
439#define CD_LBSELADD 2
440
Paul Quinn1beaae51998-12-15 15:38:36 +0000441#define CDN_FIRST (0U-601U)
442#define CDN_LAST (0U-699U)
443
444#define CDN_INITDONE (CDN_FIRST - 0x0000)
445#define CDN_SELCHANGE (CDN_FIRST - 0x0001)
446#define CDN_FOLDERCHANGE (CDN_FIRST - 0x0002)
447#define CDN_SHAREVIOLATION (CDN_FIRST - 0x0003)
448#define CDN_HELP (CDN_FIRST - 0x0004)
449#define CDN_FILEOK (CDN_FIRST - 0x0005)
450#define CDN_TYPECHANGE (CDN_FIRST - 0x0006)
Ricardo Filipe810508f2008-12-17 21:33:37 +0000451#define CDN_INCLUDEITEM (CDN_FIRST - 0x0007)
Paul Quinn1beaae51998-12-15 15:38:36 +0000452
453#define CDM_FIRST (WM_USER + 100)
454#define CDM_LAST (WM_USER + 200)
455
456#define CDM_GETSPEC (CDM_FIRST + 0x0000)
457#define CDM_GETFILEPATH (CDM_FIRST + 0x0001)
458#define CDM_GETFOLDERPATH (CDM_FIRST + 0x0002)
Mikołaj Zalewskibbd87062008-06-19 15:31:35 +0200459#define CDM_GETFOLDERIDLIST (CDM_FIRST + 0x0003)
Paul Quinn1beaae51998-12-15 15:38:36 +0000460#define CDM_SETCONTROLTEXT (CDM_FIRST + 0x0004)
461#define CDM_HIDECONTROL (CDM_FIRST + 0x0005)
462#define CDM_SETDEFEXT (CDM_FIRST + 0x0006)
463
Michael Cardenas6a52a502000-02-07 17:22:01 +0000464
465/* Messages to query information from the open or save dialogs */
466
467#define CommDlg_OpenSave_GetSpecA(_hdlg, _psz, _cbmax) \
468 (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz)
469#define CommDlg_OpenSave_GetSpecW(_hdlg, _psz, _cbmax) \
470 (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz)
471#define CommDlg_OpenSave_GetSpec WINELIB_NAME_AW(CommDlg_OpenSave_GetSpec)
472
473#define CommDlg_OpenSave_GetFilePathA(_hdlg, _psz, _cbmax) \
474 (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz)
475#define CommDlg_OpenSave_GetFilePathW(_hdlg, _psz, _cbmax) \
476 (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz)
477#define CommDlg_OpenSave_GetFilePath WINELIB_NAME_AW(CommDlg_OpenSave_GetFilePath)
478
479#define CommDlg_OpenSave_GetFolderPathA(_hdlg, _psz, _cbmax) \
480 (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz)
481#define CommDlg_OpenSave_GetFolderPathW(_hdlg, _psz, _cbmax) \
482 (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz)
483#define CommDlg_OpenSave_GetFolderPath WINELIB_NAME_AW(CommDlg_OpenSave_GetFolderPath)
484
485#define CommDlg_OpenSave_GetFolderIDList(_hdlg, _pidl, _cbmax) \
486 (int)SNDMSG(_hdlg, CDM_GETFOLDERIDLIST, (WPARAM)_cbmax, (LPARAM)(LPVOID)_pidl)
487
488#define CommDlg_OpenSave_SetControlText(_hdlg, _id, _text) \
489 (void)SNDMSG(_hdlg, CDM_SETCONTROLTEXT, (WPARAM)_id, (LPARAM)(LPSTR)_text)
490
491#define CommDlg_OpenSave_HideControl(_hdlg, _id) \
492 (void)SNDMSG(_hdlg, CDM_HIDECONTROL, (WPARAM)_id, 0)
493
494#define CommDlg_OpenSave_SetDefExt(_hdlg, _pszext) \
495 (void)SNDMSG(_hdlg, CDM_SETDEFEXT, 0, (LPARAM)(LPSTR)_pszext)
496
Michael Cardenase5e2fc92000-06-02 20:25:56 +0000497#define CommDlg_OpenSave_GetSpecA(_hdlg, _psz, _cbmax) \
498 (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz)
499#define CommDlg_OpenSave_GetSpecW(_hdlg, _psz, _cbmax) \
500 (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz)
501#define CommDlg_OpenSave_GetSpec WINELIB_NAME_AW(CommDlg_OpenSave_GetSpec)
502
503#define CommDlg_OpenSave_GetFilePathA(_hdlg, _psz, _cbmax) \
504 (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz)
505#define CommDlg_OpenSave_GetFilePathW(_hdlg, _psz, _cbmax) \
506 (int)SNDMSG(_hdlg, CDM_GETFILEPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz)
507#define CommDlg_OpenSave_GetFilePath WINELIB_NAME_AW(CommDlg_OpenSave_GetFilePath)
508
509#define CommDlg_OpenSave_GetFolderPathA(_hdlg, _psz, _cbmax) \
510 (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz)
511#define CommDlg_OpenSave_GetFolderPathW(_hdlg, _psz, _cbmax) \
512 (int)SNDMSG(_hdlg, CDM_GETFOLDERPATH, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz)
513#define CommDlg_OpenSave_GetFolderPath WINELIB_NAME_AW(CommDlg_OpenSave_GetFolderPath)
514
515#define CommDlg_OpenSave_GetFolderIDList(_hdlg, _pidl, _cbmax) \
516 (int)SNDMSG(_hdlg, CDM_GETFOLDERIDLIST, (WPARAM)_cbmax, (LPARAM)(LPVOID)_pidl)
517
518#define CommDlg_OpenSave_SetControlText(_hdlg, _id, _text) \
519 (void)SNDMSG(_hdlg, CDM_SETCONTROLTEXT, (WPARAM)_id, (LPARAM)(LPSTR)_text)
520
521#define CommDlg_OpenSave_HideControl(_hdlg, _id) \
522 (void)SNDMSG(_hdlg, CDM_HIDECONTROL, (WPARAM)_id, 0)
523
524#define CommDlg_OpenSave_SetDefExt(_hdlg, _pszext) \
525 (void)SNDMSG(_hdlg, CDM_SETDEFEXT, 0, (LPARAM)(LPSTR)_pszext)
526
Michael Cardenas6a52a502000-02-07 17:22:01 +0000527
Patrik Stridvallf94462f2002-01-31 23:22:07 +0000528typedef UINT (CALLBACK *LPPRINTHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
529typedef UINT (CALLBACK *LPSETUPHOOKPROC) (HWND, UINT, WPARAM, LPARAM);
Paul Quinnaaa83061999-06-05 15:23:20 +0000530
Paul Quinn1beaae51998-12-15 15:38:36 +0000531typedef struct tagPDA
Alexandre Julliard17216f51997-10-12 16:30:17 +0000532{
533 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000534 HWND hwndOwner;
535 HGLOBAL hDevMode;
536 HGLOBAL hDevNames;
537 HDC hDC;
Alexandre Julliard17216f51997-10-12 16:30:17 +0000538 DWORD Flags;
539 WORD nFromPage;
540 WORD nToPage;
541 WORD nMinPage;
542 WORD nMaxPage;
543 WORD nCopies;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000544 HINSTANCE hInstance;
Alexandre Julliard17216f51997-10-12 16:30:17 +0000545 LPARAM lCustData;
546 LPPRINTHOOKPROC lpfnPrintHook;
547 LPSETUPHOOKPROC lpfnSetupHook;
548 LPCSTR lpPrintTemplateName;
549 LPCSTR lpSetupTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000550 HGLOBAL hPrintTemplate;
551 HGLOBAL hSetupTemplate;
552} PRINTDLGA, *LPPRINTDLGA;
Alexandre Julliard17216f51997-10-12 16:30:17 +0000553
Paul Quinn1beaae51998-12-15 15:38:36 +0000554typedef struct tagPDW
Alexandre Julliard17216f51997-10-12 16:30:17 +0000555{
556 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000557 HWND hwndOwner;
558 HGLOBAL hDevMode;
559 HGLOBAL hDevNames;
560 HDC hDC;
Alexandre Julliard17216f51997-10-12 16:30:17 +0000561 DWORD Flags;
562 WORD nFromPage;
563 WORD nToPage;
564 WORD nMinPage;
565 WORD nMaxPage;
566 WORD nCopies;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000567 HINSTANCE hInstance;
Alexandre Julliard17216f51997-10-12 16:30:17 +0000568 LPARAM lCustData;
569 LPPRINTHOOKPROC lpfnPrintHook;
570 LPSETUPHOOKPROC lpfnSetupHook;
571 LPCWSTR lpPrintTemplateName;
572 LPCWSTR lpSetupTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000573 HGLOBAL hPrintTemplate;
574 HGLOBAL hSetupTemplate;
575} PRINTDLGW, *LPPRINTDLGW;
Alexandre Julliard17216f51997-10-12 16:30:17 +0000576
Alexandre Julliarda845b881998-06-01 10:44:35 +0000577DECL_WINELIB_TYPE_AW(PRINTDLG)
578DECL_WINELIB_TYPE_AW(LPPRINTDLG)
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000579
Detlef Riekenberg03f5774d2007-10-24 23:52:01 +0200580#define PD_ALLPAGES 0x00000000
581#define PD_SELECTION 0x00000001
582#define PD_PAGENUMS 0x00000002
583#define PD_NOSELECTION 0x00000004
584#define PD_NOPAGENUMS 0x00000008
585#define PD_COLLATE 0x00000010
586#define PD_PRINTTOFILE 0x00000020
587#define PD_PRINTSETUP 0x00000040
588#define PD_NOWARNING 0x00000080
589#define PD_RETURNDC 0x00000100
590#define PD_RETURNIC 0x00000200
591#define PD_RETURNDEFAULT 0x00000400
592#define PD_SHOWHELP 0x00000800
593#define PD_ENABLEPRINTHOOK 0x00001000
594#define PD_ENABLESETUPHOOK 0x00002000
595#define PD_ENABLEPRINTTEMPLATE 0x00004000
596#define PD_ENABLESETUPTEMPLATE 0x00008000
597#define PD_ENABLEPRINTTEMPLATEHANDLE 0x00010000
598#define PD_ENABLESETUPTEMPLATEHANDLE 0x00020000
599#define PD_USEDEVMODECOPIES 0x00040000
Klaas van Gend3d5f2a81999-08-07 12:34:54 +0000600#define PD_USEDEVMODECOPIESANDCOLLATE 0x00040000
Detlef Riekenberg03f5774d2007-10-24 23:52:01 +0200601#define PD_DISABLEPRINTTOFILE 0x00080000
602#define PD_HIDEPRINTTOFILE 0x00100000
603#define PD_NONETWORKBUTTON 0x00200000
604#define PD_CURRENTPAGE 0x00400000
605#define PD_NOCURRENTPAGE 0x00800000
606#define PD_EXCLUSIONFLAGS 0x01000000
607#define PD_USELARGETEMPLATE 0x10000000
608
609
610#define PD_EXCL_COPIESANDCOLLATE (DM_COPIES | DM_COLLATE)
611
612#define START_PAGE_GENERAL 0xffffffff
613
614#define PD_RESULT_CANCEL 0
615#define PD_RESULT_PRINT 1
616#define PD_RESULT_APPLY 2
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000617
Alexandre Julliard83f52d12000-09-26 22:20:14 +0000618typedef struct
619{
620 WORD wDriverOffset;
621 WORD wDeviceOffset;
622 WORD wOutputOffset;
623 WORD wDefault;
624} DEVNAMES;
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000625typedef DEVNAMES * LPDEVNAMES;
626
627#define DN_DEFAULTPRN 0x0001
628
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000629/* PageSetupDlg stuff ... */
630#define WM_PSD_PAGESETUPDLG (WM_USER )
631#define WM_PSD_FULLPAGERECT (WM_USER+1)
632#define WM_PSD_MINMARGINRECT (WM_USER+2)
633#define WM_PSD_MARGINRECT (WM_USER+3)
634#define WM_PSD_GREEKTEXTRECT (WM_USER+4)
635#define WM_PSD_ENVSTAMPRECT (WM_USER+5)
636#define WM_PSD_YAFULLPAGERECT (WM_USER+6)
637
Patrik Stridvallf94462f2002-01-31 23:22:07 +0000638typedef UINT (CALLBACK *LPPAGEPAINTHOOK)( HWND, UINT, WPARAM, LPARAM );
639typedef UINT (CALLBACK *LPPAGESETUPHOOK)( HWND, UINT, WPARAM, LPARAM );
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000640
Alexandre Julliarda3960291999-02-26 11:11:13 +0000641typedef struct tagPSDA
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000642{
643 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000644 HWND hwndOwner;
645 HGLOBAL hDevMode;
646 HGLOBAL hDevNames;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000647 DWORD Flags;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000648 POINT ptPaperSize;
649 RECT rtMinMargin;
650 RECT rtMargin;
651 HINSTANCE hInstance;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000652 LPARAM lCustData;
653 LPPAGESETUPHOOK lpfnPageSetupHook;
654 LPPAGEPAINTHOOK lpfnPagePaintHook;
655 LPCSTR lpPageSetupTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000656 HGLOBAL hPageSetupTemplate;
657} PAGESETUPDLGA,*LPPAGESETUPDLGA;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000658
Alexandre Julliarda3960291999-02-26 11:11:13 +0000659typedef struct tagPSDW
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000660{
661 DWORD lStructSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000662 HWND hwndOwner;
663 HGLOBAL hDevMode;
664 HGLOBAL hDevNames;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000665 DWORD Flags;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000666 POINT ptPaperSize;
667 RECT rtMinMargin;
668 RECT rtMargin;
669 HINSTANCE hInstance;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000670 LPARAM lCustData;
671 LPPAGESETUPHOOK lpfnPageSetupHook;
672 LPPAGEPAINTHOOK lpfnPagePaintHook;
673 LPCWSTR lpPageSetupTemplateName;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000674 HGLOBAL hPageSetupTemplate;
675} PAGESETUPDLGW,*LPPAGESETUPDLGW;
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000676DECL_WINELIB_TYPE_AW(PAGESETUPDLG)
677DECL_WINELIB_TYPE_AW(LPPAGESETUPDLG)
678
679#define PSD_DEFAULTMINMARGINS 0x00000000
680#define PSD_INWININIINTLMEASURE 0x00000000
681
682#define PSD_MINMARGINS 0x00000001
683#define PSD_MARGINS 0x00000002
684#define PSD_INTHOUSANDTHSOFINCHES 0x00000004
685#define PSD_INHUNDREDTHSOFMILLIMETERS 0x00000008
686#define PSD_DISABLEMARGINS 0x00000010
687#define PSD_DISABLEPRINTER 0x00000020
688#define PSD_NOWARNING 0x00000080
689#define PSD_DISABLEORIENTATION 0x00000100
690#define PSD_RETURNDEFAULT 0x00000400
691#define PSD_DISABLEPAPER 0x00000200
692#define PSD_SHOWHELP 0x00000800
693#define PSD_ENABLEPAGESETUPHOOK 0x00002000
694#define PSD_ENABLEPAGESETUPTEMPLATE 0x00008000
695#define PSD_ENABLEPAGESETUPTEMPLATEHANDLE 0x00020000
696#define PSD_ENABLEPAGEPAINTHOOK 0x00040000
697#define PSD_DISABLEPAGEPAINTING 0x00080000
Detlef Riekenberg03f5774d2007-10-24 23:52:01 +0200698#define PSD_NONETWORKBUTTON 0x00200000
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000699
Eric Pouecha8d8b522005-04-18 10:01:07 +0000700typedef struct tagPRINTPAGERANGE
701{
702 DWORD nFromPage;
703 DWORD nToPage;
704} PRINTPAGERANGE, *LPPRINTPAGERANGE;
705
706typedef struct tagPDEXA
707{
708 DWORD lStructSize;
709 HWND hwndOwner;
710 HGLOBAL hDevMode;
711 HGLOBAL hDevNames;
712 HDC hDC;
713 DWORD Flags;
714 DWORD Flags2;
715 DWORD ExclusionFlags;
716 DWORD nPageRanges;
717 DWORD nMaxPageRanges;
718 LPPRINTPAGERANGE lpPageRanges;
719 DWORD nMinPage;
720 DWORD nMaxPage;
721 DWORD nCopies;
722 HINSTANCE hInstance;
723 LPCSTR lpPrintTemplateName;
724 void* /*LPUNKNOWN*/ lpCallback;
725 DWORD nPropertyPages;
726 HPROPSHEETPAGE* lphPropertyPages;
727 DWORD nStartPage;
728 DWORD dwResultAction;
729} PRINTDLGEXA, *LPPRINTDLGEXA;
730
731typedef struct tagPDEXW
732{
733 DWORD lStructSize;
734 HWND hwndOwner;
735 HGLOBAL hDevMode;
736 HGLOBAL hDevNames;
737 HDC hDC;
738 DWORD Flags;
739 DWORD Flags2;
740 DWORD ExclusionFlags;
741 DWORD nPageRanges;
742 DWORD nMaxPageRanges;
743 LPPRINTPAGERANGE lpPageRanges;
744 DWORD nMinPage;
745 DWORD nMaxPage;
746 DWORD nCopies;
747 HINSTANCE hInstance;
748 LPCWSTR lpPrintTemplateName;
749 void* /*LPUNKNOWN*/ lpCallback;
750 DWORD nPropertyPages;
751 HPROPSHEETPAGE* lphPropertyPages;
752 DWORD nStartPage;
753 DWORD dwResultAction;
754} PRINTDLGEXW, *LPPRINTDLGEXW;
755
756DECL_WINELIB_TYPE_AW(PRINTDLGEX)
757DECL_WINELIB_TYPE_AW(LPPRINTDLGEX)
Huw D M Daviesb40a9b72000-05-26 22:26:06 +0000758
Alexandre Julliarda3960291999-02-26 11:11:13 +0000759BOOL WINAPI ChooseColorA(LPCHOOSECOLORA lpChCol);
760BOOL WINAPI ChooseColorW(LPCHOOSECOLORW lpChCol);
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000761#define ChooseColor WINELIB_NAME_AW(ChooseColor)
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000762DWORD WINAPI CommDlgExtendedError(void);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000763HWND WINAPI FindTextA(LPFINDREPLACEA lpFind);
764HWND WINAPI FindTextW(LPFINDREPLACEW lpFind);
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000765#define FindText WINELIB_NAME_AW(FindText)
Ge van Geldorp5bec0d72004-03-12 01:52:11 +0000766short WINAPI GetFileTitleA(LPCSTR lpFile, LPSTR lpTitle, WORD cbBuf);
767short WINAPI GetFileTitleW(LPCWSTR lpFile, LPWSTR lpTitle, WORD cbBuf);
Alexandre Julliard33072e11997-06-29 18:08:02 +0000768#define GetFileTitle WINELIB_NAME_AW(GetFileTitle)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000769BOOL WINAPI GetOpenFileNameA(LPOPENFILENAMEA ofn);
770BOOL WINAPI GetOpenFileNameW(LPOPENFILENAMEW ofn);
Alexandre Julliard33072e11997-06-29 18:08:02 +0000771#define GetOpenFileName WINELIB_NAME_AW(GetOpenFileName)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000772BOOL WINAPI GetSaveFileNameA(LPOPENFILENAMEA ofn);
773BOOL WINAPI GetSaveFileNameW(LPOPENFILENAMEW ofn);
Alexandre Julliard33072e11997-06-29 18:08:02 +0000774#define GetSaveFileName WINELIB_NAME_AW(GetSaveFileName)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000775BOOL WINAPI PageSetupDlgA( LPPAGESETUPDLGA );
776BOOL WINAPI PageSetupDlgW( LPPAGESETUPDLGW );
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000777#define PageSetupDlg WINELIB_NAME_AW(PageSetupDlg)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000778BOOL WINAPI PrintDlgA( LPPRINTDLGA printdlg);
779BOOL WINAPI PrintDlgW( LPPRINTDLGW printdlg);
Uwe Bonnes9fdceb81998-11-08 13:12:49 +0000780#define PrintDlg WINELIB_NAME_AW(PrintDlg)
Eric Pouecha8d8b522005-04-18 10:01:07 +0000781HRESULT WINAPI PrintDlgExA(LPPRINTDLGEXA);
782HRESULT WINAPI PrintDlgExW(LPPRINTDLGEXW);
783#define PrintDlgEx WINELIB_NAME_AW(PrintDlgEx)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000784HWND WINAPI ReplaceTextA( LPFINDREPLACEA lpFind);
785HWND WINAPI ReplaceTextW( LPFINDREPLACEW lpFind);
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000786#define ReplaceText WINELIB_NAME_AW(ReplaceText)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000787BOOL WINAPI ChooseFontA(LPCHOOSEFONTA);
788BOOL WINAPI ChooseFontW(LPCHOOSEFONTW);
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000789#define ChooseFont WINELIB_NAME_AW(ChooseFont)
Klaas van Gend3c6253b1999-03-15 15:16:54 +0000790
Vincent Béron9a624912002-05-31 23:06:46 +0000791void COMDLG32_SetCommDlgExtendedError(DWORD err);
Francois Boisvert87b81de1999-07-27 16:20:36 +0000792
Klaas van Gend3c6253b1999-03-15 15:16:54 +0000793
Maarten Lankhorst424caea2008-12-13 23:06:48 +0100794#ifndef _WIN64
Dimitrie O. Paun53f9c212003-08-28 21:43:34 +0000795#include <poppack.h>
Maarten Lankhorst424caea2008-12-13 23:06:48 +0100796#endif
Klaas van Gendb24a67f1999-05-02 11:22:50 +0000797
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000798#ifdef __cplusplus
799}
800#endif
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000801
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000802#endif /* __WINE_COMMDLG_H */